Skip to content

Commit

Permalink
Merge pull request #347 from Larocceau/make-install-feliz-recipe-less…
Browse files Browse the repository at this point in the history
…-convoluted

Just give command to install Feliz
  • Loading branch information
theprash authored Jan 3, 2024
2 parents cd37e91 + 7a9f28a commit 1af90d4
Showing 1 changed file with 8 additions and 4 deletions.
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"
]
```

```

0 comments on commit 1af90d4

Please sign in to comment.