chore: uptick

This commit is contained in:
Brooklyn Nicholson
2026-05-02 03:19:39 -05:00
parent 420f68e4e2
commit db884f4646
240 changed files with 25206 additions and 3155 deletions
+14
View File
@@ -0,0 +1,14 @@
import { atom } from 'nanostores'
export interface PreviewTarget {
kind: 'file' | 'url'
label: string
source: string
url: string
}
export const $previewTarget = atom<PreviewTarget | null>(null)
export function setPreviewTarget(target: PreviewTarget | null) {
$previewTarget.set(target)
}