import React from 'react'; import { observer } from 'mobx-react-lite'; import { EscapeButton } from 'UI'; import Header from './Header'; import ToolPanel from './ToolPanel'; import PlayOverlay from './PlayOverlay'; import Controls from './Player/Controls'; function Layout({ children, player, toolbar }) { return (
{!player.fullscreen.enabled &&
}
{player.fullscreen.enabled && }
{/* */} {children} {/* */}
{!player.fullscreen.enabled && }
); } export default observer(Layout);