15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
|
|
import FormVideoUpdate from "@/components/form/content/audio-visual/video-update-form";
|
||
|
|
|
||
|
|
const VideoUpdatePage = async () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
{/* <SiteBreadcrumb /> */}
|
||
|
|
<div className="space-y-4">
|
||
|
|
<FormVideoUpdate />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default VideoUpdatePage;
|