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