aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
blob: 660e7f6c0fc5d13d25ed545dc6653940f4f9d568 (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";

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

export default App;