(value: string)
| 24 | } |
| 25 | |
| 26 | function cssEscape(value: string): string { |
| 27 | if (typeof CSS !== 'undefined' && typeof CSS.escape === 'function') return CSS.escape(value) |
| 28 | return value.replace(/["\\]/g, '\\$&') |
| 29 | } |
| 30 | |
| 31 | export function ArchiveView(): JSX.Element { |
| 32 | const vault = useStore((s) => s.vault) |