import React from 'react'; import VideoContainer from '@custom/shared/components/VideoContainer/VideoContainer'; import { Container } from './Container'; import { Header } from './Header'; import { VideoGrid } from './VideoGrid'; export function Room({ children }) { return (
{children ? children : } ); } export default Room;