Epitech's Blih Repository Manager

WinBar.js 396B

1234567891011121314151617
  1. var React = require('react');
  2. import AppBar from 'material-ui/AppBar';
  3. import IconButton from 'material-ui/IconButton';
  4. export class WinBar extends React.Component {
  5. render() {
  6. return (
  7. <AppBar
  8. title="Glih"
  9. showMenuIconButton={false}
  10. iconElementRight={
  11. <IconButton iconClassName="material-icons">close</IconButton>
  12. }
  13. />
  14. );
  15. }
  16. }