/** * @prettier * @flow */ import React from 'react'; import type { Node } from 'react'; import { IProps } from './types'; const Link = ({ children, to = '#', blank = false, ...props }: IProps): Node => ( {children} ); export default Link;