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