UNPKG

dental-plaque-chart

Version:

A basic implementation of a dental plaque chart, using React and Tailwind.

9 lines (8 loc) 223 B
type DentalPiece = { id: string; present: boolean; surfaces: Surfaces; }; type Surfaces = Record<Surface, boolean>; type Surface = 'front' | 'back' | 'left' | 'right'; export { type DentalPiece, type Surface };