Files
Mav-Mobile-UI/src/pages/FrontCamera.tsx

20 lines
610 B
TypeScript
Raw Normal View History

2025-08-13 14:23:48 +01:00
import CameraSettings from "../components/CameraSettings/CameraSettings";
import OverviewVideoContainer from "../components/FrontCameraSettings/OverviewVideoContainer";
2025-08-18 16:04:03 +01:00
import { Toaster } from "sonner";
2025-08-13 14:23:48 +01:00
const FrontCamera = () => {
return (
<div className="mx-auto flex flex-col lg:flex-row gap-2 px-1 sm:px-2 lg:px-0 w-full min-h-screen">
<OverviewVideoContainer
title={"Front Camera"}
side="CameraRear"
settingsPage={true}
/>
2025-09-12 08:21:52 +01:00
<CameraSettings title="Front Camera Settings" side="CameraFront" />
2025-08-18 16:04:03 +01:00
<Toaster />
2025-08-13 14:23:48 +01:00
</div>
);
};
export default FrontCamera;