Files
anti-hvost/src/pages/profile.tsx
2025-04-02 16:46:20 +03:00

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;