frigate/web/src/components/Wrapper.tsx
Blake Blackshear 363db0596b Use new UI (#8983)
* fixup build

* swap frontends
2023-12-31 07:50:09 -06:00

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;