forked from CRM_Production/JTT_CrM
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
19 lines
385 B
import React from 'react';
|
|
import { BrowserRouter, Routes, Route } from 'react-router-dom';
|
|
import Connexion from './pages/Connexion';
|
|
import Admin from './pages/Admin.js';
|
|
|
|
const App = () => {
|
|
return (
|
|
//<BrowserRouter>
|
|
// <Routes>
|
|
// <Route path="*" element={<Connexion />} />
|
|
// </Routes>
|
|
//</BrowserRouter>
|
|
|
|
<Connexion />
|
|
);
|
|
}
|
|
|
|
export default App;
|