UNPKG

opendash

Version:

open.DASH data visualization framework

9 lines (8 loc) 203 B
import { ComponentType } from "react"; export interface AppConfigRouteInterface { path: string; component: () => Promise<{ default: ComponentType<any>; }>; props?: any; }