import React from 'react'; import { LinkProps } from '../../interfaces'; import { StyledLink } from './styles'; const Link: React.FC = (props: LinkProps) => ( {props.children} ); export default Link;