create landing page

This commit is contained in:
ahmedsosic
2022-03-14 16:08:14 +01:00
parent 08df3cecf5
commit 08c3e632c8
9 changed files with 113 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
import './App.css';
import React from 'react';
import Category from './Category';
import LandingPage from './LandingPage';
function App() {
@@ -9,7 +9,7 @@ function App() {
return (
<div className="App">
<Category/>
<LandingPage/>
</div>
);
}