From 9d7f7f8d334dee3a30b9bf5fbe6a230a5560ea14 Mon Sep 17 00:00:00 2001 From: Maxence Lanone Date: Mon, 10 Oct 2022 16:42:16 +0200 Subject: [PATCH] ajout page connexion + ordonancemennt dossier src --- src/App.js | 4 ++++ src/pages/Connexion.js | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/pages/Connexion.js diff --git a/src/App.js b/src/App.js index 506faf1..6406f26 100644 --- a/src/App.js +++ b/src/App.js @@ -1,3 +1,5 @@ +import React from 'react'; + const App = () => { return (
@@ -6,4 +8,6 @@ const App = () => { ); } + + export default App; diff --git a/src/pages/Connexion.js b/src/pages/Connexion.js new file mode 100644 index 0000000..3ac36ce --- /dev/null +++ b/src/pages/Connexion.js @@ -0,0 +1,20 @@ +import React from 'react'; + +const Connexion = () => { + return ( +
+ {/* Create a connexion page */} +

Connexion

+ + {/* Create a form */} +
e.preventDefault()}> + + + +
+ +
+ ); +}; + +export default Connexion; \ No newline at end of file