Files
hetty/admin/src/pages/settings/index.tsx
2022-03-14 20:57:33 +01:00

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;