UNPKG

@clickpick/cra-template-vkma

Version:

The base VKMA template for Create React App.

15 lines (12 loc) 259 B
import type { ReactNode } from 'react'; export interface BaseViewProps { id: string; activePanel: string; popout?: ReactNode; modal?: ReactNode; onSwipeBack?: VoidFunction; history?: string[]; } export interface BasePanelProps { id: string; }