Const
Default entity terminology labels.
Use this as a base for creating domain-specific entity labels. All components that reference the entity type (dialog titles, empty states, button text) derive their defaults from these labels via factory functions.
import { DEFAULT_ENTITY_LABELS } from '@hiyve/react-rooms';// Use defaults for standard "Room" terminologyconst labels = DEFAULT_ENTITY_LABELS;// Override for sessionsconst sessionLabels = { ...DEFAULT_ENTITY_LABELS, entity: 'Session', entityPlural: 'Sessions' }; Copy
import { DEFAULT_ENTITY_LABELS } from '@hiyve/react-rooms';// Use defaults for standard "Room" terminologyconst labels = DEFAULT_ENTITY_LABELS;// Override for sessionsconst sessionLabels = { ...DEFAULT_ENTITY_LABELS, entity: 'Session', entityPlural: 'Sessions' };
Default entity terminology labels.