UNPKG

cra-template-pi

Version:

A quick start Create React App with many auto implemented features

9 lines (7 loc) 167 B
export type ICategory = typeof Category[keyof typeof Category] export const Category = { HOME: 'home', WORK: 'work', OTHERS: 'others', ALL: 'all', } as const