Files
ghostpizza/resources/js/layouts/AppLayout.tsx
2025-10-12 17:36:07 +02:00

10 lines
178 B
TypeScript

import { type ReactNode } from 'react';
interface AppLayoutProps {
children: ReactNode;
}
export default ({ children }: AppLayoutProps) => {
return <>{children}</>;
};