Files
hetty/admin/src/pages/settings/index.tsx

13 lines
268 B
TypeScript
Raw Normal View History

2022-03-14 15:42:43 +01:00
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;