import React from 'react'
import { Grid, Container, Typography } from '@toptal/picasso'
import { SPACING_4, palette } from '@toptal/picasso-utils'
type Props = { children: React.ReactNode }
const ContentContainer = ({ children }: Props) => (
{children}
)
const Example = () => (
1
1
1
1
1
1
1
1
1
1
1
1
12
6
6
3
3
3
3
Sidebar
Main Content
Main Content
Sidebar
Sidebar
Main Content
Sidebar
)
export default Example