import '../styles/Link.sass' interface Props { to: string children?: any } export default (props: Props) => { return ( <> {props.children} ) }