main
1/* eslint no-console:0 */
2// This file is automatically compiled by Webpack, along with any other files
3// present in this directory. You're encouraged to place your actual application logic in
4// a relevant structure within app/javascript and only use these pack files to reference
5// that code so it'll be compiled.
6//
7// To reference this file, add <%= javascript_pack_tag 'application' %> to the appropriate
8// layout file, like app/views/layouts/application.html.erb
9
10import LocalTime from 'local-time';
11import Rails from 'rails-ujs';
12import Turbolinks from 'turbolinks';
13import '../styles';
14import '../images';
15import '../controllers';
16
17LocalTime.start();
18Rails.start();
19Turbolinks.start();