From 7a9f28a599c3cf42095894d5518cdb5d3771a60e Mon Sep 17 00:00:00 2001 From: Joost Date: Wed, 3 Jan 2024 14:50:18 +0000 Subject: [PATCH] Just give command to install Feliz --- docs/recipes/ui/add-feliz.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/recipes/ui/add-feliz.md b/docs/recipes/ui/add-feliz.md index 7099608d3..543c5db56 100644 --- a/docs/recipes/ui/add-feliz.md +++ b/docs/recipes/ui/add-feliz.md @@ -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 @@ -13,5 +18,4 @@ Html.button [ prop.onClick (fun _ -> setCount(count - 1)) prop.text "Decrement" ] -``` - +``` \ No newline at end of file