Files
TechRadarAJR/js/components/PageIndex.js
Daniel Pötzinger 50f7ff1ac1 Add Go update example
2017-09-09 00:11:15 +02:00

18 lines
575 B
JavaScript

import React from 'react';
import HeroHeadline from './HeroHeadline';
import QuadrantGrid from './QuadrantGrid';
import Fadeable from './Fadeable';
import SetTitle from './SetTitle';
export default function PageIndex({ leaving, onLeave, items, navigate, ...props }) {
return (
<Fadeable leaving={leaving} onLeave={onLeave}>
<SetTitle {...props} title="Technology Radar" />
<div className="headline-group">
<HeroHeadline alt="October 2017">AOE Technology Radar</HeroHeadline>
</div>
<QuadrantGrid items={items} />
</Fadeable>
);
}