mirror of
https://git.aramjonghu.nl/AramJonghu/aramjonghu-site.git
synced 2026-06-07 09:38:23 +02:00
15 lines
213 B
React
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;
|