import AppBar from "../elements/Appbar/Appbar" import AnimationLayout from "./AnimationLayout" const AppLayout = ({ children, title }) => { return ( <> { children } ) } export default AppLayout