import { ProfileLayout } from 'components'
export default function Layout({ children }) {
return (
<>
<ProfileLayout>{children}</ProfileLayout>
</>
)
}