Rename featured content component

This commit is contained in:
Kamran Ahmed
2019-09-07 18:45:27 +04:00
parent f35e10f08c
commit c927aa948e
4 changed files with 41 additions and 22 deletions

View File

@@ -1,5 +1,5 @@
import Header from '../../components/header/index';
import SwimLane from '../../components/swim-lane';
import FeaturedContent from '../../components/featured-content';
import './style.scss';
import HeroSection from '../../components/hero-section';
@@ -8,7 +8,7 @@ export const Home = (props) => (
<Header />
<HeroSection />
<div className="swim-lanes border-top border-bottom">
<SwimLane />
<FeaturedContent />
</div>
</div>
);