JS/TP02/EX02/js/app.js

7 lines
154 B
JavaScript
Raw Permalink Normal View History

2024-02-26 19:17:32 +01:00
import Controller from './controller.js'
import Model from './model.js'
import View from './view.js'
const app = new Controller(new Model(),new View())