13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
import WithAuthMiddleware from "@/middlewares/WithAuth";
|
|
import Dashboard from "@/components/layouts/Dashboard";
|
|
|
|
const DashboardLayout = (props) => {
|
|
return (
|
|
<WithAuthMiddleware>
|
|
<Dashboard {...props} />
|
|
</WithAuthMiddleware>
|
|
);
|
|
};
|
|
|
|
export default DashboardLayout;
|