import React from 'react' import { Grid, Page, Typography } from '@toptal/picasso' const Example = () => ( Content ) type Props = { children: React.ReactNode } const SampleContainer = ({ children }: Props) => (
{children}
) export default Example