diff --git a/client/src/common/classes.js b/client/src/common/classes.js
new file mode 100644
index 000000000..eeb71cf89
--- /dev/null
+++ b/client/src/common/classes.js
@@ -0,0 +1,8 @@
+
+const CLASSES = {
+ DATATABLE_EDITOR: 'DATATABLE_EDITOR'
+};
+
+export {
+ CLASSES,
+}
\ No newline at end of file
diff --git a/client/src/common/errors.js b/client/src/common/errors.js
new file mode 100644
index 000000000..e69de29bb
diff --git a/client/src/components/App.js b/client/src/components/App.js
index d4e0add38..51c3a8acb 100644
--- a/client/src/components/App.js
+++ b/client/src/components/App.js
@@ -9,6 +9,7 @@ import PrivateRoute from 'components/PrivateRoute';
import Authentication from 'components/Authentication';
import Dashboard from 'components/Dashboard/Dashboard';
import GlobalErrors from 'containers/GlobalErrors/GlobalErrors';
+import RegisterWizardPage from 'containers/Authentication/Register/RegisterPage';
import messages from 'lang/en';
import 'style/App.scss';
@@ -31,6 +32,10 @@ function App({ locale }) {