import React from 'react' interface LinkProps { children: string href: string } export default function Link(props: LinkProps) { const { children, href } = props return {children} }