File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -26,3 +26,13 @@ module Modal = Modal
26
26
module Nav = Nav
27
27
module NavDropdown = NavDropdown
28
28
module Navbar = Navbar
29
+ module Offcanvas = Offcanvas
30
+ module Overlay = Overlay
31
+ module OverlayTrigger = OverlayTrigger
32
+ module Tooltip = Tooltip
33
+ module Popover = Popover
34
+ module Pagination = Pagination
35
+ module Placeholder = Placeholder
36
+ module ProgressBar = ProgressBar
37
+ module Spinner = Spinner
38
+ module Table = Table
Original file line number Diff line number Diff line change
1
+ open Types
2
+
3
+ @module ("react-bootstrap" ) @react.component
4
+ external make : (
5
+ ~animation : [#glow | #border ],
6
+ ~_as : string = ?,
7
+ ~children : React .element = ?,
8
+ ~role : string = ?,
9
+ ~size : [#sm ]= ?,
10
+ ~variant : variant = ?,
11
+ ~className : string = ?,
12
+ ~bsPrefix : string = ?,
13
+ ) => React .element = "Spinner"
Original file line number Diff line number Diff line change
1
+ type responsive = Bool (bool ) | Size ([#xs | #sm | #md | #lg | #xl | #xxl ])
2
+
3
+ @module ("react-bootstrap" ) @react.component
4
+ external make : (
5
+ ~bordered : bool = ?,
6
+ ~borderless : bool = ?,
7
+ ~hover : bool = ?,
8
+ ~responsive : responsive = ?,
9
+ ~size : string = ?,
10
+ ~striped : bool = ?,
11
+ ~variant : [#light | #dark ]= ?,
12
+ ~className : string = ?,
13
+ ~children : React .element ,
14
+ ~bsPrefix : string = ?,
15
+ ) => React .element = "Table"
You can’t perform that action at this time.
0 commit comments