2025-01-20 12:10:04 +00:00
|
|
|
import NewCreateMagazineForm from "@/components/form/magazine/create-magazine-form";
|
|
|
|
|
import CreateMagazineForm from "@/components/form/magazine/magazine-form";
|
|
|
|
|
import React from "react";
|
2024-04-17 09:13:29 +00:00
|
|
|
|
|
|
|
|
const AdminMagazineCreate = () => {
|
2025-01-20 12:10:04 +00:00
|
|
|
return (
|
2025-01-30 11:34:29 +00:00
|
|
|
<div className="h-[96vh] bg-transparent p-3 lg:p-8 !bg-slate-100 dark:!bg-black overflow-y-auto">
|
2025-01-20 12:10:04 +00:00
|
|
|
<NewCreateMagazineForm />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
2024-04-17 09:13:29 +00:00
|
|
|
|
2025-01-20 12:10:04 +00:00
|
|
|
export default AdminMagazineCreate;
|