Bachelorthesis_Code/frontend/src/components/pages/Home.jsx
cami 85e484bf0b
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Renaming and autoformatting
- renamed the react files to jsx
- autoformat with vscode
2021-07-22 20:18:01 +02:00

16 lines
241 B
JavaScript

import React from "react";
import "../../App.css";
import HeroSection from "../HeroSection";
import Footer from "../../Footer";
function Home() {
return (
<>
<HeroSection />
<Footer />
</>
);
}
export default Home;