car details permission

This commit is contained in:
2024-12-08 13:48:46 +03:30
parent 7320c00581
commit 37c01ad927
3 changed files with 9 additions and 4 deletions

View File

@@ -1,7 +1,12 @@
import TestPage from "@/components/dashboard/carDetails";
import WithPermission from "@/core/middlewares/withPermission";
const Page = () => {
return <TestPage />;
return (
<WithPermission permission_name={[""]}>
<TestPage />
</WithPermission>
);
};
export default Page;