add ProfilePage

This commit is contained in:
p2405951
2025-11-09 14:23:44 +01:00
parent 7eaae67655
commit 124fc305a0
3 changed files with 19 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import styles from "./ProfilePage.module.css";
import LoginForm from "../../components/form/form.jsx";
function ProfilePage() {
return (
<div className={styles.container}>
<LoginForm />
</div>
);
}
export default ProfilePage;