Create VolunteerProfilePage

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-12-17 14:32:04 +01:00
parent 7fa9b74bd8
commit 9f681d6345
3 changed files with 18 additions and 0 deletions
@@ -0,0 +1,13 @@
import styles from "./VolunteerProfilePage.module.css"
import { useParams } from "react-router";
export default function VolunteerProfilePage() {
const params = useParams();
const id = params.id;
return <div>
</div>
}