frigate/web/src/components/Wrapper.tsx

12 lines
240 B
TypeScript
Raw Normal View History

import { ReactNode } from "react";
type TWrapperProps = {
children: ReactNode;
};
const Wrapper = ({ children }: TWrapperProps) => {
2024-05-16 19:51:57 +03:00
return <main className="h-dvh w-full overflow-hidden">{children}</main>;
};
export default Wrapper;