UNPKG

@masa-dev/react-signage

Version:

This is a react library for signage.

11 lines (10 loc) 332 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-runtime").JSX.Element; export {};