import Navbar from './navbar/Navbar'; import styled from '@emotion/styled'; import { ThemeProvider } from '@emotion/react'; import { User } from '../interfaces/user.interface'; import { Workspace } from '../interfaces/workspace.interface'; import { lightTheme } from './styles/themes'; const StyledLayout = styled.div` display: flex; flex-direction: row; width: 100vw; height: 100vh; `; const StyledRightContainer = styled.div` display: flex; flex-direction: row; flex: 1; `; type OwnProps = { children: JSX.Element; user?: User; workspace?: Workspace; }; function AppLayout({ children, user, workspace }: OwnProps) { return ( {children} ); } export default AppLayout;