This is BuckleScript bindings for React-Bootstrap
npm install --save bs-react-bootstrap
yarn add bs-react-bootstrap
bs-react-bootstrap
to bs-dependencies
on your bsconfig.json
index.html
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
>
Note
As you are using React Bootstrap it's not necessary to import any jQuery stuff.
Please refer to React Bootstrap Documentation for each component Spec.
Some specif patterns:
Legend
:link: Binding\ :white_check_mark: Done\ :x: Not implemented yet\ :warning: WIP
:link: :x: Alerts\ :link: :x: Badge\ :link: :x: Breadcrumb\ :link: :x: Buttons\ :link: :x: Button Group\ :link: :x: Cards\ :link: :x: Carousel\ :link: :x: Dropdowns\ :link: :x: Forms\ :link: :x: Input Group\ :link: :x: Images\ :link: :x: Figures\ :link: :x: Jumbotron\ :link: :x: List Group\ :link: :x: Modal\ :link: :warning: Navs\ :link: :white_check_mark:Navbar\ :link: :x: Overlays\ :link: :x: Pagination\ :link: :x: Popovers\ :link: :x: Progress\ :link: :x: Table\ :link: :x: Tabs\ :link: :x: Tooltips
Sample: Navbar
open ReactBootstrap;
let component = "App" |> ReasonReact.statelessComponent;
let make = _children => {
...component,
render: _self =>
<div className="App container">
<Navbar fixed=`top fluid=true collapseOnSelect=true>
<Navbar.Brand>
<a href="/">
{string("Scratch")}
</a>
</Navbar.Brand>
<Navbar.Toggle />
<Navbar.Collapse>
<Nav pullRight=true>
<Nav.Item href="signup">
{string("Sign Up")}
</Nav.Item>
<Nav.Item href="login">
{string("Log In")}
</Nav.Item>
</Nav>
</Navbar.Collapse>
</Navbar>
<Routes />
</div>,
};
open ReactBootstrap
let component = "App" |> ReasonReact.statelessComponent
let make _children =
{
component with
render =
(fun _self ->
((div ~className:"App container"
~children:[((Navbar.createElement ~fixed:`top ~fluid:true
~collapseOnSelect:true
~children:[((Navbar.Brand.createElement
~children:[((a ~href:"/"
~children:[
string
"Scratch"]
())[@JSX ])] ())
[@JSX ]);
((Navbar.Toggle.createElement
~children:[] ())[@JSX ]);
((Navbar.Collapse.createElement
~children:[((Nav.createElement
~pullRight:true
~children:[((
Nav.Item.createElement
~href:"signup"
~children:
[
string
"Sign Up"]
())
[@JSX ]);
((
Nav.Item.createElement
~href:"login"
~children:
[
string
"Log In"]
())
[@JSX ])]
())[@JSX ])] ())
[@JSX ])] ())[@JSX ]);
((Routes.createElement ~children:[] ())[@JSX ])] ())
[@JSX ]))
}