UNPKG

opendash

Version:

open.DASH data visualization framework

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