UNPKG

@masa-dev/react-signage

Version:

This is a react library for signage.

11 lines (10 loc) 320 B
import { CSSProperties } from "react"; interface Props { play: boolean; fullScreen: boolean; style?: CSSProperties; onFullscreenChange?: (fullscreen: boolean) => void; children: React.ReactNode; } export declare function FullscreenableContainer(props: Props): import("react").JSX.Element; export {};