summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/26/frontend/pages/signup.js
blob: dd90349dd988c8ff11de435969cdc30c3181e777 (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 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 />
    <Signup />
    <Signup />
  </Columns>
);

export default SignupPage;