mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import { Layout, Page } from "features/Layout";
|
|
import Settings from "features/settings/components/Settings";
|
|
|
|
function Index(): JSX.Element {
|
|
return (
|
|
<Layout page={Page.Settings} title="Settings">
|
|
<Settings />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default Index;
|