19 lines
551 B
TypeScript
19 lines
551 B
TypeScript
|
|
import React, { FunctionComponent } from 'react';
|
||
|
|
import { Helmet } from 'react-helmet';
|
||
|
|
|
||
|
|
const Home: FunctionComponent = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<Helmet>
|
||
|
|
<title>Forms</title>
|
||
|
|
<meta name="Forms home page" content="The home page for all Altitude forms"/>
|
||
|
|
</Helmet>
|
||
|
|
<header className="App-header">
|
||
|
|
<p>Welcome to the Altitude forms page</p>
|
||
|
|
<a href="/contact">Contact us.</a>
|
||
|
|
</header>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Home;
|