[feat] video setting panel and mock

This commit is contained in:
Purp1e
2025-03-23 16:42:13 +08:00
parent 08017293b0
commit 2860408ec0
7 changed files with 238 additions and 17 deletions

View File

@@ -1,4 +1,11 @@
"use client"
import VideoSetting from "@/components/cstb/VideoSetting"
export default function Page() {
return <div>Tool</div>
return (
<section className="flex flex-col h-full gap-4">
<VideoSetting />
</section>
)
}