(value: string)
| 19 | } |
| 20 | |
| 21 | function cssEscape(value: string): string { |
| 22 | if (typeof CSS !== 'undefined' && typeof CSS.escape === 'function') return CSS.escape(value) |
| 23 | return value.replace(/["\\]/g, '\\$&') |
| 24 | } |
| 25 | |
| 26 | export function QuickNotesView(): JSX.Element { |
| 27 | const notes = useStore((s) => s.notes) |