Bs binding for react animate height
npm install bs-react-animate-heightThis is a reasonml binding React animate height component https://github.com/Stanko/react-animate-height
``
open BsReactAnimateHeight;
open Utils.Height;
[@react.component]
let make = () => {
let (height, setHeight) = React.useState(_ => Zero);
let toggle = _ => setHeight(_ => height == Zero ? Auto : Zero);
"Put as many React or HTML components here."->ReasonReact.string