From 1de668d7a7d390e05369c2bf35db65265239c2d2 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 9 Oct 2025 16:42:54 +0800 Subject: [PATCH] Added pdf info storage --- src/stores/pdfinfo.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/stores/pdfinfo.ts diff --git a/src/stores/pdfinfo.ts b/src/stores/pdfinfo.ts new file mode 100644 index 0000000..2b818bd --- /dev/null +++ b/src/stores/pdfinfo.ts @@ -0,0 +1,10 @@ +import { atom } from 'nanostores' + +export const _optn = atom('') +export const _applicationNo = atom('') +export const _date = atom('') +export const _name = atom('') +export const _location = atom('') +export const _type = atom('') +export const _code = atom('') +