summaryrefslogtreecommitdiff
path: root/web-ui/app/js
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2017-02-01 16:41:11 -0200
committerAnike Arni <aarni@thoughtworks.com>2017-02-01 16:41:11 -0200
commit50efd8f59b814bc27e870ff3b09372b0d717b926 (patch)
treebfb09a35af6fa82a232eeb702dc069f5f966d04a /web-ui/app/js
parentc141c30b068e91f58b0c64649462589f7442a2df (diff)
[#922] Add react
with @tayanefernandes
Diffstat (limited to 'web-ui/app/js')
-rw-r--r--web-ui/app/js/account_recovery.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/web-ui/app/js/account_recovery.js b/web-ui/app/js/account_recovery.js
index e69de29b..a136b261 100644
--- a/web-ui/app/js/account_recovery.js
+++ b/web-ui/app/js/account_recovery.js
@@ -0,0 +1,7 @@
+import React from 'react'
+import { render } from 'react-dom'
+
+render(
+ <h1>Hello, world!</h1>,
+ document.getElementById('root')
+);