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