mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
b910db4f05
* Fix handling of recordings and switching cameras * mobile switch * Cleanup * Cleanup autoplay * Remove vite
12 lines
242 B
TypeScript
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;
|