14 lines
425 B
TypeScript
14 lines
425 B
TypeScript
import NewCreateMagazineForm from "@/components/form/magazine/create-magazine-form";
|
|
import CreateMagazineForm from "@/components/form/magazine/magazine-form";
|
|
import React from "react";
|
|
|
|
const AdminMagazineCreate = () => {
|
|
return (
|
|
<div className="h-[96vh] bg-transparent p-3 lg:p-8 !bg-slate-100 dark:!bg-black overflow-y-auto">
|
|
<NewCreateMagazineForm />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AdminMagazineCreate;
|