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
385 B

4 years ago
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 (
4 years ago
<Router>
<div>
<Header />
<Routes />
<Footer />
</div>
</Router>
);
}
export default App;