This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/components/design/Main/Main.tsx

21 lines
368 B
TypeScript

import classNames from 'classnames'
export interface MainProps {
className?: string
}
export const Main: React.FC<MainProps> = (props) => {
const { children, className } = props
return (
<main
className={classNames(
'flex flex-1 flex-col items-center justify-center py-8',
className
)}
>
{children}
</main>
)
}