mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-10-04 11:15:55 +02:00
* Add ui for events * Display data for review items * Use preview thumbnails * Implement paging * Show icons for what was detected * Show progress bar on preview thumbnail * Hide the overlays on hover and update reviewed status * Dim previews that have been reviewed * Show audio icons * Cleanup preview thumb player * initial implementation of review timeline * Use timeout for hover playback * Break apart mobile and desktop views * Show icons for sub labels * autoplay first video on mobile * Only show the last 24 hours by default * Rework scrolling to fix nested scrolling * Final scroll cleanups --------- Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
type TWrapperProps = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
const Wrapper = ({ children }: TWrapperProps) => {
|
|
return <main className="w-screen h-screen overflow-hidden">{children}</main>;
|
|
};
|
|
|
|
export default Wrapper;
|