interface Props { to: string children?: any } export default (props: Props) => { return ( <> {props.children} ) }