Files
user-front/src/layouts/index.jsx
AmirHossein Mahmoodi 03ed807eaf use witel webapp builder
2023-12-10 15:08:10 +03:30

16 lines
335 B
JavaScript

import {Fragment} from "react";
const layoutList = (await import('./list'))
const Layout = ({layout, children}) => {
const Component = layoutList[layout?.name] || Fragment
const props = layout?.props || {}
return (
<Component {...props}>
{children}
</Component>
)
}
export default Layout