This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/pages/Pricing.js
Tom Moor 802ce10f14 POC
2017-10-22 17:16:57 -07:00

28 lines
517 B
JavaScript

// @flow
import React from 'react';
import styled from 'styled-components';
import Grid from 'styled-components-grid';
import { Helmet } from 'react-helmet';
const Header = styled.div`
width: 100%;
padding: 3em;
text-align: center;
`;
export default function Pricing() {
return (
<Grid>
<Helmet>
<title>Pricing</title>
</Helmet>
<Header>
<h1>Pricing</h1>
<p>
Just a proof of concept for multiple pages.
</p>
</Header>
</Grid>
);
}