import styled from '@emotion/styled'; import { ReactNode } from 'react'; import BaseLayout from './_base_layout'; const DashboardLayoutStyle = styled.div(({ theme }) => ({ height: 'auto', width: theme.media.small_desktop, maxWidth: '100%', padding: '0.75em 1em', })); const DashboardLayout = ({ children }: { children: ReactNode }) => ( {children} ); export default DashboardLayout;