attributes-kit
Version:
React component for MSON rendering
13 lines (11 loc) • 372 B
JavaScript
import ArrayComponent from './Array/Array';
import SelectComponent from './Select/Select';
import ObjectComponent from './Object/Object';
export default {
object: ObjectComponent,
select: SelectComponent,
// Since Array and Enum elements have the same structure we'll
// share the same component for rendering.
array: ArrayComponent,
enum: ArrayComponent,
};