mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-03-01 12:44:17 +00:00
15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
interface ContentProps {
|
|
children?: React.ReactNode
|
|
}
|
|
|
|
/**
|
|
* @category AppShell
|
|
*/
|
|
export function Content({ children }: ContentProps) {
|
|
return (
|
|
<div className='tw-flex tw-flex-col tw-w-full tw-h-full tw-bg-base-200 tw-relative'>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|