Switch page title for different pages

This commit is contained in:
Tom Raithel
2017-03-21 21:30:03 +01:00
parent 3fedd01d42
commit 169bfc74ec
9 changed files with 42 additions and 9 deletions

View File

@@ -1,10 +1,12 @@
import React from 'react';
import HeroHeadline from './HeroHeadline';
import Fadeable from './Fadeable';
import SetTitle from './SetTitle';
export default function PageHelp({ leaving, onLeave }) {
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>
</Fadeable>
);