You've already forked HeliosLauncher
mirror of
https://github.com/encounter/HeliosLauncher.git
synced 2026-03-30 11:13:06 -07:00
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
React
15 lines
276 B
React
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>
|
|
)
|
|
}
|
|
|
|
} |