13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import Layout from "@/components/layout";
|
|
import { FunctionComponent } from "preact";
|
|
|
|
const ProfilePage: FunctionComponent = () => {
|
|
return (
|
|
<Layout>
|
|
<p>Profile</p>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default ProfilePage;
|