initial commit

This commit is contained in:
August Skare
2018-10-18 13:28:44 +02:00
parent c616b53c9c
commit b158a6d722
55 changed files with 1223 additions and 1020 deletions

View File

@@ -0,0 +1,33 @@
import * as React from 'react';
import styled from 'styled-components';
import { withContext, Props } from './withContext';
import { Alpha } from './Typography';
const StyledMain = styled.div`
padding-top: 6.25rem;
padding-bottom: 6.25rem;
`;
const Title = styled(Alpha)`
color: ${props => props.color};
margin-bottom: 6.25rem;
`;
interface MainProps extends Props {
children: React.ReactNode;
}
function Main(props: MainProps) {
return (
<StyledMain>
<Title as="h2" color={props.colors.main}>
Get started
</Title>
{props.children}
</StyledMain>
);
}
export default withContext(Main);