mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
Setup Inertia (#593)
This commit is contained in:
5
resources/js/components/container.tsx
Normal file
5
resources/js/components/container.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import { ReactNode } from 'react';
|
||||
|
||||
export default function Container({ children }: { children?: ReactNode }) {
|
||||
return <div className="container mx-auto space-y-5 py-10">{children}</div>;
|
||||
}
|
Reference in New Issue
Block a user