Files

15 lines
213 B
React

import "./App.css";
import Layout from "./components/Layout";
import Home from "./pages/Home";
function App() {
return (
<Layout>
<Home />
</Layout>
);
}
export default App;