From cb6ffff3a0f7d69f40ac00ed6b7e57b2db73a7fa Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 31 Jan 2024 19:42:49 +0100 Subject: [PATCH] introducing profile --- src/pages/Profile.jsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/pages/Profile.jsx diff --git a/src/pages/Profile.jsx b/src/pages/Profile.jsx new file mode 100644 index 0000000..1991198 --- /dev/null +++ b/src/pages/Profile.jsx @@ -0,0 +1,27 @@ +import React from "react"; +import Menu from "../components/Menu"; +import CountrySelect from "../components/CountrySelect"; +import ProfileSelect from "../components/ProfileSelect"; +import { Link } from "react-router-dom"; + +export default function Profile() { + return ( +
+ {/* */} +
+ +
+
+

profil

+ +
+
+

Pays

+ +
+ +
+
+
+ ); +}