Skip to content

Commit

Permalink
fix: undo changes on LandingPage index file
Browse files Browse the repository at this point in the history
Relates #43
  • Loading branch information
RamyAlshurafa committed Jan 2, 2019
1 parent 4336856 commit 03a4c93
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions client/src/components/LandingPage/index.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import React from 'react';
// import Header from '../Header';
// import Community from './Community';
// import ProjectsSection from './ProjectsSection';
import React, { Fragment } from 'react';
import Header from '../Header';
import Community from './Community';
import ProjectsSection from './ProjectsSection';
import Team from './Team';
// import TechStack from './TechStack';
// import Timeline from './Timeline';
// import Footer from '../Footer';
import TechStack from './TechStack';
import Timeline from './Timeline';
import Footer from '../Footer';

export default function() {
return (
// <Fragment>
// <Header />
// <Community />
// <ProjectsSection />
<Fragment>
<Header />
<Community />
<ProjectsSection />
<Team />
// <TechStack />
// <Timeline />
// <Footer />
// </Fragment>
<TechStack />
<Timeline />
<Footer />
</Fragment>
);
}

0 comments on commit 03a4c93

Please sign in to comment.