giotto
Version:
GiottoJS - Visualization Library
23 lines (15 loc) • 359 B
JavaScript
import {view, viewReady} from 'd3-view';
import components from './components/index';
import modelApp from './model';
viewReady(start);
// Start the application
function start () {
// Build the model-view pair
var vm = view({
model: modelApp()
});
//
// Mount the UI
vm.use(components)
.mount('body');
}