// @flow import React, { ReactNode } from 'react'; import { View } from 'react-sketchapp'; import * as model from './model'; import { withRouter } from './RouterContext'; interface Props { viewport: model.Viewport, to: string, children: ReactNode, }; const Link = ({ viewport, to, children }: Props) => { if (typeof to !== 'string') { return null; } if (Array.isArray(viewport) || !viewport) { console.warn('Viewport is not valid. Please use Link inside of Routes'); } return ( {children} ); }; export default withRouter(Link);