Fable.Builders.React

badge

These are F# / Fable bindings for the React framework

Getting Started

dotnet package add Fable.Builders.React
yarn add react react-dom

Usage

[<ReactComponent>]
let MyComponent (props: {| MyProp: string |}) =
    Div {
        style 
            [ style.float'.right ]
        
        Button {
            str props.MyProp
        }
    }