diff options
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); ``` |