7 lines
187 B
JavaScript
7 lines
187 B
JavaScript
import AppShell from '../components/AppShell';
|
|
import SettingsPage from '../components/pages/Settings';
|
|
|
|
export default function Settings() {
|
|
return <AppShell page={SettingsPage} />;
|
|
}
|