UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

7 lines (6 loc) 206 B
import { ComponentType } from "../../state/context/context"; export type BaseState = { id: string; componentType: ComponentType; }; export type DefaultState<TState> = Omit<TState, keyof BaseState>;