16 lines
342 B
TypeScript
16 lines
342 B
TypeScript
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
import FormInternal from "@/components/form/communication/internal-form";
|
|
|
|
const InternalCreatePage = () => {
|
|
return (
|
|
<div>
|
|
<SiteBreadcrumb />
|
|
<div className="space-y-4">
|
|
<FormInternal />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default InternalCreatePage;
|