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.
18 lines
599 B
JavaScript
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>
|
|
)
|
|
}
|
|
|
|
} |