mirror of
https://github.com/czhu12/canine.git
synced 2025-12-31 00:10:14 -06:00
11 lines
320 B
JavaScript
11 lines
320 B
JavaScript
import { application } from "./application"
|
|
import TextareaAutogrow from 'stimulus-textarea-autogrow'
|
|
|
|
import controllers from './**/*_controller.js'
|
|
|
|
application.register('textarea-autogrow', TextareaAutogrow)
|
|
controllers.forEach((controller) => {
|
|
application.register(controller.name, controller.module.default)
|
|
})
|
|
|