16 lines
406 B
TypeScript

import BaseLayout from "components/BaseLayout";
import { Footer } from "components/parts/Footer";
import Header from "components/parts/Header";
import Typography from "components/typography/Typography";
import React from "react";
type Props = {};
export default function AccountSettings({}: Props) {
return (
<BaseLayout>
<Typography>Accont Setting page</Typography>
</BaseLayout>
);
}