Files
fotospiel-app/resources/js/guest/pages/_util.tsx
2025-09-08 14:03:43 +02:00

12 lines
327 B
TypeScript

import React from 'react';
export function Page({ title, children }: { title: string; children?: React.ReactNode }) {
return (
<div style={{ maxWidth: 720, margin: '0 auto', padding: 16 }}>
<h1 style={{ fontSize: 20, fontWeight: 600, marginBottom: 12 }}>{title}</h1>
<div>{children}</div>
</div>
);
}