Frontend/src/pages/Information/TermsOfUse.tsx

16 lines
399 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 TermsOfUse({}: Props) {
return (
<BaseLayout>
<Typography>Terms of use page</Typography>
</BaseLayout>
);
}