legacy/pairent_frontend_react/src/App.js

19 lines
323 B
JavaScript
Raw Normal View History

2023-05-01 12:39:34 +02:00
import React from 'react';
import Header from './components/header/Header';
import Footer from './components/footer/Footer';
import './App.css';
2023-05-01 12:39:34 +02:00
function App() {
return (
2023-05-02 15:03:18 +02:00
<>
<Header/>
<main>
<div className="horizontalLine"></div>
</main>
<Footer/>
</>
2023-05-01 12:39:34 +02:00
);
}
export default App;