04d869794f
This branch will likely never be merged into master, however it is intended to experiment with using React.js to power the backend. Due to complications, this will likely not be implemented in the initial release due to the complexity of the task.
7 lines
178 B
JavaScript
7 lines
178 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import App from './app.jsx'
|
|
|
|
window.onload = function(){
|
|
ReactDOM.render(<App />, document.getElementById('app'))
|
|
} |