SkirdaElectronLauncher/app/frame.jsx
Daniel Scalzi 04d869794f Theoretical tests for integration with React.js.
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.
2018-02-19 19:13:10 -05:00

18 lines
599 B
JavaScript

import React, { Component } from 'react'
import styles from './frame.css'
export default class FrameBar extends Component {
render(){
return(
<div className="frame_bar">
<div className="frame_btn_dock">
<button className="frame_btn" id="frame_btn_close" tabIndex="-1"></button>
<button className="frame_btn" id="frame_btn_restoredown" tabIndex="-1"></button>
<button className="frame_btn" id="frame_btn_minimize" tabIndex="-1"></button>
</div>
</div>
)
}
}