diff options
| author | 2026-01-16 09:37:20 +0800 | |
|---|---|---|
| committer | 2026-01-16 09:37:20 +0800 | |
| commit | ad36e0ce82770f9b3509ddb1cf96bc3422969806 (patch) | |
| tree | 6df911b964d0d32facf55844c55e61ba3878ae3f /ui/README.md | |
| parent | 455da9d2b07d05c2bdd1fffa5031a6a329cc5643 (diff) | |
| parent | 963b4b8567ac1bd8b23c41e1bfbd6a99d202d1ed (diff) | |
| download | DropOut-ad36e0ce82770f9b3509ddb1cf96bc3422969806.tar.gz DropOut-ad36e0ce82770f9b3509ddb1cf96bc3422969806.zip | |
Merge pull request #41 from HsiangNianian/main
Diffstat (limited to 'ui/README.md')
| -rw-r--r-- | ui/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/README.md b/ui/README.md index e6cd94f..a45e2a0 100644 --- a/ui/README.md +++ b/ui/README.md @@ -42,6 +42,6 @@ If you have state that's important to retain within a component, consider creati ```ts // store.ts // An extremely simple external store -import { writable } from 'svelte/store' -export default writable(0) +import { writable } from "svelte/store"; +export default writable(0); ``` |