diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-21 14:08:48 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-21 14:12:30 +1100 |
| commit | d581e5b61a771ef8619a5bfbc84a6e337c7ca13f (patch) | |
| tree | e372aab2a7ab95d6fd22dcfe99f3f1985456ecc7 /src/store.ts | |
| parent | bf357e48dc261dab08598bd93071ca53ef386402 (diff) | |
Move general utility funcs into util.ts
Diffstat (limited to 'src/store.ts')
| -rw-r--r-- | src/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store.ts b/src/store.ts index d05b49f..5bbf584 100644 --- a/src/store.ts +++ b/src/store.ts @@ -3,8 +3,8 @@ */ import {defineStore} from 'pinia'; +import {Breakpoint, getBreakpoint, onTouchDevice} from './util'; import {HistDate, CalDate} from './lib'; -import {getBreakpoint, Breakpoint, onTouchDevice} from './lib'; // ========== For store state ========== |
