From 49ed43e3972497d1149a4b78ae468fa1b29afc0b Mon Sep 17 00:00:00 2001 From: picklesrus Date: Tue, 3 Sep 2019 16:38:38 -0400 Subject: [PATCH] Join flow standalone with no extra stuff. --- src/routes.json | 7 +++++++ src/views/join/join.jsx | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/views/join/join.jsx diff --git a/src/routes.json b/src/routes.json index 43ea0737a..c1494768f 100644 --- a/src/routes.json +++ b/src/routes.json @@ -161,6 +161,13 @@ "view": "jobs/moderator/moderator", "title": "Community Moderator" }, + { + "name": "join", + "pattern": "^/join/?$", + "routeAlias": "/join/?$", + "view": "join/join", + "title": "Join Scratch" + }, { "name": "messages", "pattern": "^/messages/?$", diff --git a/src/views/join/join.jsx b/src/views/join/join.jsx new file mode 100644 index 000000000..70628dbb0 --- /dev/null +++ b/src/views/join/join.jsx @@ -0,0 +1,15 @@ +const React = require('react'); +const render = require('../../lib/render.jsx'); +const JoinModal = require('../../components/modal/join/modal.jsx'); +const ErrorBoundary = require('../../components/errorboundary/errorboundary.jsx'); + +const openModal = true; +const Register = () => ( + + + +); +render(, document.getElementById('app'));