anyway, to use react-bootstrap I install the depen...
# react
d
anyway, to use react-bootstrap I install the dependency (e.g. yarn install react-bootstrap) and then I defined the dynamic class, e.g.:
Copy code
external interface AlertProps: RProps {
  var bsClass: string
  var bsStyle: string
  var closeLabel: string
  var onDismiss: () => Unit
}

@JsModule("react-bootstrap/lib/Alert")
external val Alert: RClass<AlertProps>