mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
import { classNames, PropTypes, MenuBar, MenuItem } from '../../third_party';
|
|
|
|
/**
|
|
* 状态菜单
|
|
* @author tengge / https://github.com/tengge1
|
|
*/
|
|
class StatusMenu extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return <MenuItem title={`r${THREE.REVISION}`}></MenuItem>;
|
|
}
|
|
}
|
|
|
|
export default StatusMenu; |