- implement setup page with video feed and preview functionality

This commit is contained in:
2025-12-23 14:36:16 +00:00
parent 9394793669
commit 73c67ad992
7 changed files with 100 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
import VideoFeedSetup from "./components/videofeed/VideoFeedSetup";
const Setup = () => {
return (
<div className="grid grid-cols-1 md:grid-cols-2 gap-2 md:gap-5">
<VideoFeedSetup />
</div>
);
};
export default Setup;