mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
type TWrapperProps = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
const Wrapper = ({ children }: TWrapperProps) => {
|
|
return <main className="h-dvh w-full overflow-hidden">{children}</main>;
|
|
};
|
|
|
|
export default Wrapper;
|