Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 24 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 0% |
Changes | 0 |
1 | import React, { Fragment } from 'react' |
||
2 | import Experiences from '~/modules/home/components/Experiences' |
||
3 | import SideProjects from '~/modules/home/components/SideProjects' |
||
4 | import Certification from '~/modules/home/components/Certification' |
||
5 | import Project from '~/modules/home/components/Project' |
||
6 | import Contact from '~/modules/home/components/Contact' |
||
7 | import Footer from '~/modules/home/components/Footer' |
||
8 | import SlideIterator from '~/modules/core/components/SlideIterator' |
||
9 | |||
10 | const HomePage = () => ( |
||
11 | <Fragment> |
||
12 | <Experiences /> |
||
13 | <SlideIterator> |
||
14 | <SideProjects /> |
||
15 | <Project /> |
||
16 | <Certification /> |
||
17 | <Contact /> |
||
18 | </SlideIterator> |
||
19 | <Footer /> |
||
20 | </Fragment> |
||
21 | ) |
||
22 | |||
23 | export default HomePage |
||
24 |