Files
TechRadarAJR/js/components/PageHelp.js
Daniel Pötzinger e31f7bf1df Link Toolbox page
2017-03-31 11:52:15 +02:00

17 lines
551 B
JavaScript

import React from 'react';
import HeroHeadline from './HeroHeadline';
import Fadeable from './Fadeable';
import SetTitle from './SetTitle';
export default function PageHelp({ leaving, onLeave, ...props }) {
return (
<Fadeable leaving={leaving} onLeave={onLeave}>
<SetTitle {...props} title="How to use AOE Technology Radar" />
<HeroHeadline>How to use AOE Technology Radar</HeroHeadline>
<div className="fullpage-content">
<p>See also <a href="aoe-toolbox.html">AOE Toolbox</a></p>
</div>
</Fadeable>
);
}