From a976ad5565569fb0d0cb852c786f842789ca2ea9 Mon Sep 17 00:00:00 2001 From: adam-fu Date: Sun, 2 Mar 2025 06:13:41 +0100 Subject: [PATCH] Note on powershell in quick start --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index b1d4bfcd..efc65f4f 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,11 @@ mkdir src echo "export const World = () =>

Hey

;" > src/hello.stories.tsx npx ladle serve ``` + +For powershell, replace in the above listings echo with the following + +```powershell +@" +export const World = () =>

Hey

; +"@ | out-file -encoding ASCII src/hello.stories.tsx +``` \ No newline at end of file