summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/28/frontend/pages/signup.js
blob: 28ed2f45fb721aee9e965a67416fce37044cd52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Signup from '../components/Signup';
import Signin from '../components/Signin';
import styled from 'styled-components';

const Columns = styled.div`
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
`;

const SignupPage = props => (
  <Columns>
    <Signup />
    <Signin />
  </Columns>
);

export default SignupPage;