Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions docs/recipes/ui/add-feliz.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
[Feliz](https://github.com/Zaid-Ajaj/Feliz) is a wrapper for the base [React](https://reactjs.org/) DSL library that emphasises consistency, lightweight formatting, discoverable attributes and full type-safety. The default SAFE Template already uses Feliz.

### Using Feliz
1. [Add Feliz to your project](./../../recipes/package-management/add-nuget-package-to-client.md)
1. Start using Feliz in your code.
1. Add Feliz to your project

```
dotnet paket add Feliz -p Client
```

2. Start using Feliz in your code.

```fsharp
open Feliz
Expand All @@ -13,5 +18,4 @@ Html.button [
prop.onClick (fun _ -> setCount(count - 1))
prop.text "Decrement"
]
```

```