UNPKG

@eureca/eureca-ui

Version:

UI component library of Eureca's user and admin apps

10 lines (6 loc) 232 B
import { schema } from 'normalizr'; export const question = new schema.Entity('questions'); export const section = new schema.Entity('sections', { questions: [question], }); export const celiSchema = new schema.Array(section);