@plurid/plurid-react
Version:
React implementation of Plurid to explore the web in three dimensions
18 lines (17 loc) • 820 B
TypeScript
import React from 'react';
import { AnyAction } from '@reduxjs/toolkit';
import { Theme } from '@plurid/plurid-themes';
export interface PluridNotFoundOwnProperties {
}
export interface PluridNotFoundStateProperties {
stateGeneralTheme: Theme;
stateInteractionTheme: Theme;
}
export interface PluridNotFoundDispatchProperties {
}
export declare type PluridNotFoundProperties = PluridNotFoundOwnProperties & PluridNotFoundStateProperties & PluridNotFoundDispatchProperties;
declare const ConnectedPluridNotFound: import("react-redux").ConnectedComponent<React.FC<PluridNotFoundProperties>, {
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
}>;
export default ConnectedPluridNotFound;