Files
fotospiel-app/resources/js/guest-v2/screens/SettingsScreen.tsx
2026-02-02 13:01:20 +01:00

12 lines
254 B
TypeScript

import React from 'react';
import AppShell from '../components/AppShell';
import SettingsContent from '../components/SettingsContent';
export default function SettingsScreen() {
return (
<AppShell>
<SettingsContent />
</AppShell>
);
}