MediaSFU ReactJS
    Preparing search index...

    Interface MainContainerComponentOptions

    interface MainContainerComponentOptions {
        backgroundColor?: string;
        children: ReactNode;
        containerWidthFraction?: number;
        containerHeightFraction?: number;
        marginLeft?: number;
        marginRight?: number;
        marginTop?: number;
        marginBottom?: number;
        padding?: number;
        containerProps?: HTMLAttributes<HTMLDivElement>;
        renderContent?: (
            options: {
                defaultContent: ReactNode;
                dimensions: { width: number; height: number };
            },
        ) => ReactNode;
        renderContainer?: (
            options: {
                defaultContainer: ReactNode;
                dimensions: { width: number; height: number };
            },
        ) => ReactNode;
    }
    Index

    Properties

    backgroundColor?: string
    children: ReactNode
    containerWidthFraction?: number
    containerHeightFraction?: number
    marginLeft?: number
    marginRight?: number
    marginTop?: number
    marginBottom?: number
    padding?: number
    containerProps?: HTMLAttributes<HTMLDivElement>
    renderContent?: (
        options: {
            defaultContent: ReactNode;
            dimensions: { width: number; height: number };
        },
    ) => ReactNode
    renderContainer?: (
        options: {
            defaultContainer: ReactNode;
            dimensions: { width: number; height: number };
        },
    ) => ReactNode