Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 500 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 500 Bytes

bs-swr

BuckleScript bindings to SWR.

Installation

Add

"@roddynpm/bs-swr": "^0.2.5",
"swr": "^0.2.0",

as dependencies to package.json and @roddynpm/bs-swr to bsconfig.json.

Example

[@react.component]
let make = () => {
  let config = Swr.Options.make(~dedupingInterval=6000, ());
  let Swr.{data} = Swr.useSWR(~config, "key", _ => load_data());

  switch (data) {
  | Some(data) => render(data)
  | None => render_loading()
  };
};