diff --git a/src/index.jsx b/src/index.jsx
index fdbb309..40ad2a2 100755
--- a/src/index.jsx
+++ b/src/index.jsx
@@ -12,6 +12,7 @@ import Footer, { messages as footerMessages } from '@edx/frontend-component-foot
import configureStore from './data/configureStore';
import AccountSettingsPage, { NotFoundPage } from './account-settings';
import LoginPage from './login';
+import RegistrationPage from './registration';
import appMessages from './i18n';
import './index.scss';
@@ -24,9 +25,10 @@ subscribe(APP_READY, () => {
-
-
+
+
+
diff --git a/src/registration/RegistrationPage.jsx b/src/registration/RegistrationPage.jsx
new file mode 100644
index 0000000..04dfc23
--- /dev/null
+++ b/src/registration/RegistrationPage.jsx
@@ -0,0 +1,4 @@
+import React from 'react';
+import EmailField from '../account-settings/EmailField';
+
+export default () => ;
diff --git a/src/registration/index.js b/src/registration/index.js
new file mode 100644
index 0000000..c58da73
--- /dev/null
+++ b/src/registration/index.js
@@ -0,0 +1 @@
+export { default } from './RegistrationPage';