Repository URL to install this package:
|
Version:
0.0.0 ▾
|
@sushiswap/ui
/
Page.tsx
|
|---|
import classNames from 'classnames'
import type { FC, ReactNode, ComponentType, HTMLAttributes } from 'react'
export const Page: FC<HTMLAttributes<HTMLElement>> = ({ children, className, ...props }) => (
<main {...props} className={classNames('w-full max-w-3xl mx-auto py-16', className)}>
{children}
</main>
)