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.
mvfront-react/src/App.jsx

21 lines
404 B

import React from 'react';
import { BrowserRouter as Router} from "react-router-dom";
import Routes from "./Routes";
import Header from "./components/layouts/Header";
import Footer from "./components/layouts/Footer";
function App() {
return (
<Router>
<div>
<Header />
<Routes />
<Footer />
</div>
</Router>
);
}
export default App;