-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathindex.js
More file actions
22 lines (15 loc) · 831 Bytes
/
index.js
File metadata and controls
22 lines (15 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Application } from "@hotwired/stimulus"
import "@hotwired/turbo"
const application = Application.start()
import ClipboardController from "./controllers/clipboard_controller"
application.register("clipboard", ClipboardController)
import ContentLoaderController from "./controllers/content_loader_controller"
application.register("content-loader", ContentLoaderController)
import HelloController from "./controllers/hello_controller"
application.register("hello", HelloController)
import SlideshowController from "./controllers/slideshow_controller"
application.register("slideshow", SlideshowController)
import TabsController from "./controllers/tabs_controller"
application.register("tabs", TabsController)
import AsyncController from "./controllers/async_controller"
application.register("async", AsyncController)