comindware.core.ui
Version:
Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.
46 lines (43 loc) • 898 B
JavaScript
export default function() {
return new Core.components.NavigationDrawer({
collection: [
{
id: 1,
displayName: 1
},
{
id: 2,
displayName: 1
},
{
id: 3,
displayName: 1
},
{
id: 4,
displayName: 1
},
{
id: 5,
displayName: 1
},
{
id: 6,
displayName: 1
},
{
id: 7,
displayName: 1
},
{
id: 8,
displayName: 1
},
{
id: 9,
displayName: 1
}
],
title: 'Drawer demo'
});
}