Sha256: 786cf093f831bbf488ff2d04e3f50e70c168d37563a9defe12b980b181c3665d
Contents?: true
Size: 432 Bytes
Versions: 2
Compression:
Stored size: 432 Bytes
Contents
// app.js import BrandDetailModel from './BrandDetailModel.js'; import BrandDetailView from './BrandDetailView.js'; import BrandDetailController from './BrandDetailController.js'; document.addEventListener('DOMContentLoaded', async () => { const model = new BrandDetailModel(); const view = new BrandDetailView(model); const controller = new BrandDetailController(model, view); await controller.initializeApp(); });
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
solara-0.2.0 | solara/lib/core/dashboard/brand/BrandDetail.js |
solara-0.1.0 | solara/lib/core/dashboard/brand/BrandDetail.js |