blakeblackshear.frigate/web/src/components/Wrapper.tsx
Nicolas Mowen b910db4f05
Fix handling of recordings and switching cameras (#10351)
* Fix handling of recordings and switching cameras

* mobile switch

* Cleanup

* Cleanup autoplay

* Remove vite
2024-03-10 08:17:09 -05:00

12 lines
242 B
TypeScript

import { ReactNode } from "react";
type TWrapperProps = {
children: ReactNode;
};
const Wrapper = ({ children }: TWrapperProps) => {
return <main className="w-screen h-dvh overflow-hidden">{children}</main>;
};
export default Wrapper;