blob: 342cfea86759dd821b3f4698e3fadaa4bb1ff369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import Signup from '../components/Signup';
import Signin from '../components/Signin';
import RequestReset from '../components/RequestReset';
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 />
<RequestReset />
</Columns>
);
export default SignupPage;
|