mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
interface EditorProps {
|
|
children?: React.ReactNode
|
|
}
|
|
|
|
export default function EditorLayout({ children }: EditorProps) {
|
|
return (
|
|
<div className="container mx-auto grid items-start gap-10 py-8">
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|