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.
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
import React, { Component } from 'react'
|
|
import Frame from './frame.jsx'
|
|
|
|
export default class App extends Component {
|
|
|
|
render(){
|
|
return (
|
|
<div className="appMount">
|
|
<Frame />
|
|
My App
|
|
</div>
|
|
)
|
|
}
|
|
|
|
} |