app.js 336 B

1234567891011121314
  1. import './bootstrap.js';
  2. /*
  3. * Welcome to your app's main JavaScript file!
  4. *
  5. * This file will be included onto the page via the importmap() Twig function,
  6. * which should already be in your base.html.twig.
  7. */
  8. import Test from './js/test.js';
  9. const test = new Test()
  10. test.tellMe()
  11. console.log("Et là ?")
  12. import './styles/app.css';