Fable.Reactstrap 未在客户端 fsproj SATE 堆栈上定义

Fable.Reactstrap not defined on Client fsproj SATE-stack

我正尝试在 SAFE.Template 的客户端项目上使用 Fable.Reactstrap。我已将 Fable.Reactstrap 添加到 Nuget、Paket 和 NPM,但在执行 dotnet run 时仍然收到 error FSHARP: The namespace 'Reactstrap' is not defined。这是代码错误:

open Fable.Reactstrap

真正的代码可以在我的github's repo上找到。 Fable.Reactstrap 本身已添加到项目的依赖项中并添加到 paket.references.

如何在我的项目中解决此错误和用户 Fable.Reactstrap

命名空间只是 Reactstrap,所以这应该有效:

open Reactstrap

参见示例代码 here