fable-react icon indicating copy to clipboard operation
fable-react copied to clipboard

Fable bindings and helpers for React and React Native

Results 27 fable-react issues
Sort by recently updated
recently updated
newest added

Recently, a new RFC was published called React Server Components, which brings a new life to "do it on the server" approach. Related links: https://github.com/reactjs/server-components-demo https://www.youtube.com/watch?v=TQQPAU21ZUw https://github.com/josephsavona/rfcs/blob/server-components/text/0000-server-components.md I've got some...

Hi, just stumbled on this problem: this does not work ```f# open Fable.Recharts open Fable.Recharts.Props module SVG = Fable.Helpers.React.Props open Fable.Helpers.React ``` and leads to this error: > warning.js:33 Warning:...

Given I have the following code ```fs let test log props.test span [] [] ]), memoizeWith= fun o n -> log "haha"; false) // Use somewhere in the code say...

I'm trying to integrate with reactjs-autocomplete. If I use the direct integration (`autocomplete` in module AutoComplete below), it kind of works. The things that don't seem to work so well...

I think one of the big advantages of using Fable and React over e.g. Elm is that it is possible to use an ocean full of ready made React components....

Ok, this is my new attempt to fix the `FunctionComponent.Of` API #188 #194. To make sure users are always passing the same render function to each `FunctionComponent.Of` I'm storing a...

I've updated my application to v6 of Fable.React and while everything compiles fine, I am now getting a blank page with this error: ``` Uncaught TypeError: undefined is not iterable...

I've spent some effort on creating a custom react component using `props` and `state` (including `componentDidMount`, `componentWillReceiveProps`, `setState` and such). There's a few lines in source code suggesting to do...