diff options
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/account_recovery.html | 10 | ||||
-rw-r--r-- | web-ui/app/js/account_recovery.js | 8 | ||||
-rw-r--r-- | web-ui/app/js/account_recovery/page.js | 5 |
3 files changed, 23 insertions, 0 deletions
diff --git a/web-ui/app/account_recovery.html b/web-ui/app/account_recovery.html new file mode 100644 index 00000000..407f5907 --- /dev/null +++ b/web-ui/app/account_recovery.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <head> + <title>Pixelated Account Recovery</title> + </head> + <body> + <div id="root"/> + <script type="text/javascript" src="/assets/account_recovery.js"></script> + </body> +</html> diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js new file mode 100644 index 00000000..02183574 --- /dev/null +++ b/web-ui/app/js/account_recovery.js @@ -0,0 +1,8 @@ +import React from 'react' +import { render } from 'react-dom' +import Page from 'js/account_recovery/page' + +render( + <Page/>, + document.getElementById('root') +); diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js new file mode 100644 index 00000000..e400dfae --- /dev/null +++ b/web-ui/app/js/account_recovery/page.js @@ -0,0 +1,5 @@ +import React from 'react' + +const Page = () => <h1>Hello world</h1>; + +export default Page |