18 lines
454 B
JavaScript
18 lines
454 B
JavaScript
import { FeaturedWrap } from './style';
|
|
import FeaturedJourneys from './journeys';
|
|
import FeaturedGuides from './guides';
|
|
import FeaturedRoadmaps from './roadmaps';
|
|
|
|
const FeaturedContent = (props) => (
|
|
<FeaturedWrap className="border-top border-bottom bg-light">
|
|
<FeaturedRoadmaps />
|
|
<FeaturedGuides />
|
|
{ /*<FeaturedJourneys />*/ }
|
|
</FeaturedWrap>
|
|
);
|
|
|
|
FeaturedContent.defaultProps = {
|
|
className: '',
|
|
};
|
|
|
|
export default FeaturedContent; |