JS/TP04/EX01/js/app.js
2024-03-08 16:34:15 +01:00

8 lines
157 B
JavaScript

import model from './model'
import Controller from './controller'
import View from './view'
const view = new View()
const app = new Controller(view,model)