import * as React from 'react'; import { AppState } from '../state'; import { ChromeMac } from './chrome-mac'; import { Commands } from './commands'; import { WelcomeTour } from './tour-welcome'; interface HeaderProps { appState: AppState; } /** * Everything above the editors, so buttons and the address bar. * * @class Header * @extends {React.Component} */ export class Header extends React.Component { public render() { return ( <> ); } }