diff options
| author | 2026-01-16 01:35:23 +0000 | |
|---|---|---|
| committer | 2026-01-16 01:35:23 +0000 | |
| commit | 963b4b8567ac1bd8b23c41e1bfbd6a99d202d1ed (patch) | |
| tree | 6df911b964d0d32facf55844c55e61ba3878ae3f /ui/README.md | |
| parent | e21e288275806df7785d869667c90062e1890bf0 (diff) | |
| download | DropOut-963b4b8567ac1bd8b23c41e1bfbd6a99d202d1ed.tar.gz DropOut-963b4b8567ac1bd8b23c41e1bfbd6a99d202d1ed.zip | |
style: auto format and lint fix [skip ci]
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); ``` |