summaryrefslogtreecommitdiffstats
path: root/frontend/pages/signup.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-11 12:31:49 -0400
committerWes Bos <wesbos@gmail.com>2018-05-11 12:31:49 -0400
commitd3838ccb799cd8c286efcea90d776e8b6936d484 (patch)
tree4430ea2ada80b1fefb057adfce91867484be7475 /frontend/pages/signup.js
parent8ccb0d93cdc064776454c929e15aa03129be37a3 (diff)
move apollo to _app
Diffstat (limited to 'frontend/pages/signup.js')
-rw-r--r--frontend/pages/signup.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend/pages/signup.js b/frontend/pages/signup.js
index d9bc5e9..28e9a58 100644
--- a/frontend/pages/signup.js
+++ b/frontend/pages/signup.js
@@ -1,6 +1,5 @@
-import { Component } from 'react';
+import React from 'react';
import styled from 'styled-components';
-import withData from '../lib/withData';
import Signup from '../components/Signup';
import Signin from '../components/Signin';
import Page from '../components/Page';
@@ -22,4 +21,4 @@ const SignUpPage = () => (
</Page>
);
-export default withData(SignUpPage);
+export default SignUpPage;