@plurid/plurid-react
Version:
React implementation of Plurid to explore the web in three dimensions
21 lines (20 loc) • 1.03 kB
TypeScript
import React from 'react';
import { AnyAction } from '@reduxjs/toolkit';
import { Theme } from '@plurid/plurid-themes';
import { PluridRouteComponentProperty } from '@plurid/plurid-data';
import { PluridReactFunctionalComponent } from "../../../data/interfaces";
export interface IframePlaneOwnProperties {
}
export interface IframePlaneStateProperties {
stateGeneralTheme: Theme;
stateInteractionTheme: Theme;
}
export interface IframePlaneDispatchProperties {
}
export declare type IframePlaneProperties = IframePlaneOwnProperties & IframePlaneStateProperties & IframePlaneDispatchProperties;
declare const ConnectedIframePlane: import("react-redux").ConnectedComponent<PluridReactFunctionalComponent<IframePlaneProperties, PluridRouteComponentProperty>, {
plurid: PluridRouteComponentProperty;
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
}>;
export default ConnectedIframePlane;