import React from "react"; import Header from "./Header/Header"; import HomeView from "./Views/Home"; const App = () => { const currentview = "home"; return ( <> {currentview === "home" && } > ) } export default App;