Standalone join flow page.

This commit is contained in:
picklesrus 2019-08-12 09:37:57 -04:00
parent 9497096cbf
commit aa1c4116e0
3 changed files with 3619 additions and 3627 deletions

7225
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -328,6 +328,13 @@
"view": "boost/boost",
"title": "LEGO BOOST"
},
{
"name": "join",
"pattern": "^/join/?$",
"routeAlias": "/join/?$",
"view": "join/join",
"title": "Join Scratch"
},
{
"name":"3-faq-redirect",
"pattern": "^/3faq/?$",

14
src/views/join/join.jsx Normal file
View file

@ -0,0 +1,14 @@
const React = require('react');
const render = require('../../lib/render.jsx');
const JoinModal = require('../../components/modal/join/modal.jsx');
const openModal = true;
const Register = () => (
<div className="join">
<JoinModal
isOpen={openModal}
key="scratch3registration"
/>
</div>
);
render(<Register />, document.getElementById('app'));