We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf36313 commit a976ad5Copy full SHA for a976ad5
README.md
@@ -60,3 +60,11 @@ mkdir src
60
echo "export const World = () => <p>Hey</p>;" > src/hello.stories.tsx
61
npx ladle serve
62
```
63
+
64
+For powershell, replace in the above listings echo with the following
65
66
+```powershell
67
+@"
68
+export const World = () => <p>Hey</p>;
69
+"@ | out-file -encoding ASCII src/hello.stories.tsx
70
+```
0 commit comments