import React, {ReactNode} from 'react'; import {GridContainer, Grid} from '@trussworks/react-uswds'; import J40Header from './J40Header'; import J40Footer from './J40Footer'; import J40Aside from '../components/J40Aside'; import {URLFlagProvider} from '../contexts/FlagContext'; interface ILayoutProps { children: ReactNode, location: Location } const Layout = ({children, location}: ILayoutProps) => { const isWidthFullPage = location.pathname.match(/cejst\/?/); const conditionalAside = isWidthFullPage ? <> : ; const gridCssClass = isWidthFullPage ? ' desktop:grid-col-12' : 'desktop:grid-col-9'; return (
{children}
{conditionalAside}
); }; export default Layout;