import AppBar from '../elements/Appbar/Appbar' import BasicFooter from '../elements/Footer/BasicFooter' import AnimationLayout from './AnimationLayout' const AppLayout = ({ children, title, withFooter = true }) => { return ( <> {children} {withFooter && } ) } export default AppLayout