-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change Team component into statefull function
Relates #43
- Loading branch information
1 parent
fc26b22
commit 1179766
Showing
1 changed file
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
import React, { Fragment } from 'react'; | ||
import Header from '../Header'; | ||
import Community from './Community'; | ||
import ProjectsSection from './ProjectsSection'; | ||
import React 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> | ||
); | ||
} |