mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-08 12:15:25 +03: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;
|