Files
Homarr/src/pages/manage/preferences.tsx

12 lines
280 B
TypeScript
Raw Normal View History

2023-07-29 14:49:44 +02:00
import { Title } from "@mantine/core";
import { MainLayout } from "~/components/layout/admin/main-admin.layout";
2023-07-29 14:59:11 +02:00
const PreferencesPage = () => {
2023-07-29 14:49:44 +02:00
return (
<MainLayout>
2023-07-29 14:59:11 +02:00
<Title>Preferences</Title>
2023-07-29 14:49:44 +02:00
</MainLayout>
)
}
2023-07-29 14:59:11 +02:00
export default PreferencesPage