Skip to content

Commit 1af90d4

Browse files
authored
Merge pull request #347 from Larocceau/make-install-feliz-recipe-less-convoluted
Just give command to install Feliz
2 parents cd37e91 + 7a9f28a commit 1af90d4

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/recipes/ui/add-feliz.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22
[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.
33

44
### Using Feliz
5-
1. [Add Feliz to your project](./../../recipes/package-management/add-nuget-package-to-client.md)
6-
1. Start using Feliz in your code.
5+
1. Add Feliz to your project
6+
7+
```
8+
dotnet paket add Feliz -p Client
9+
```
10+
11+
2. Start using Feliz in your code.
712

813
```fsharp
914
open Feliz
@@ -13,5 +18,4 @@ Html.button [
1318
prop.onClick (fun _ -> setCount(count - 1))
1419
prop.text "Decrement"
1520
]
16-
```
17-
21+
```

0 commit comments

Comments
 (0)