现在我正在为前端学习 Kotlin,我已经创建了 Kotlin React App 使用
npx create-react-kotlin-app my-app
然后我尝试使用 import 导入 Bootstrap
@file:JsModule("node_modules/boostrap/bootsrap.js")
external class Boostrap {}
然后
在 App.kt 中,渲染函数
override fun RBuilder.render() {
div("container") {
appHeader()
p("App-intro") {+
"This is body"
}
p("App-ticker") {
ticker()
}
}
}
我已经使用 npm install 命令添加了引导程序,但是引导程序文件根本没有加载到 UI 中。你能帮我加载引导程序吗?