aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/README.md
diff options
context:
space:
mode:
authorHsiangNianian <44714368+HsiangNianian@users.noreply.github.com>2026-01-16 01:35:23 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2026-01-16 01:35:23 +0000
commit963b4b8567ac1bd8b23c41e1bfbd6a99d202d1ed (patch)
tree6df911b964d0d32facf55844c55e61ba3878ae3f /ui/README.md
parente21e288275806df7785d869667c90062e1890bf0 (diff)
downloadDropOut-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.md4
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);
```