apphouse
Version:
Component library for React that uses observable state management and theme-able components.
11 lines (10 loc) • 324 B
TypeScript
import React from 'react';
import { IStoreWithBase } from './context.interface';
/**
* This component is responsible for rendering all views
* that are currently active in the app.
* The views that are specified in the routes are rendered
*/
export declare const AppViews: React.FC<{
store: IStoreWithBase<any>;
}>;