Last change
on this file since d7b7f00 was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago |
Add project
|
-
Property mode
set to
100644
|
File size:
539 bytes
|
Rev | Line | |
---|
[d7b7f00] | 1 | import React from "react";
|
---|
| 2 | import Header from "./HomeComponents/Header";
|
---|
| 3 | import Hero from "./HomeComponents/Hero";
|
---|
| 4 | import FeaturedRecipes from "./HomeComponents/FeaturedRecipes";
|
---|
| 5 | import Categories from "./HomeComponents/Categories";
|
---|
| 6 | import Nationalities from "./HomeComponents/Nationalities";
|
---|
| 7 | import Footer from "./HomeComponents/Footer";
|
---|
| 8 |
|
---|
| 9 | function Home() {
|
---|
| 10 | return (
|
---|
| 11 | <div>
|
---|
| 12 | <Header />
|
---|
| 13 | <Hero />
|
---|
| 14 | <FeaturedRecipes />
|
---|
| 15 | <Categories />
|
---|
| 16 | <Nationalities />
|
---|
| 17 | <Footer />
|
---|
| 18 | </div>
|
---|
| 19 | );
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | export default Home;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.