Bachelorthesis_Code/frontend/src/components/pages/Home.js
cami 29142a9977 Refactoring because of local scripts and tabs
In this commit I want to refactor some things.
- I don't want to use external connections so I moved all that shit to localhost
- I do not need so many spaces as it is bad for formatting
2021-05-27 03:07:54 +02:00

18 lines
287 B
JavaScript

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