fable-compiler / fable-react

Fable bindings and helpers for React and React Native
MIT License
273 stars 67 forks source link

Introduce strf #219

Closed kerams closed 3 years ago

kerams commented 3 years ago

A simple shorthand to get rid of an annoying pipe when rendering a formatted string: div [] [ sprintf "Hello, %s. It is %A" user DateTime.Now |> str ] => div [] [ strf "Hello, %s. It is %A" user DateTime.Now ]

alfonsogarciacaro commented 3 years ago

Thanks!