aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
blob: 4f71c906476b39ce5d884a684837c80b465b0798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from "react";
import Header from "./Header/Header";
import HomeView from "./Views/Home/Home";

const App = () => {
	const currentview = "home";
	return (
		<>
			<Header/>
			{currentview === "home" && <HomeView/>}
		</>
	)
}

export default App;