feat(selectedFontsStore): create selectedFontsStore to manage selected fonts collection

This commit is contained in:
Ilia Mashkov
2026-01-18 14:52:12 +03:00
parent af2ef77c30
commit 37ab7f795e

View File

@@ -0,0 +1,4 @@
import { createEntityStore } from '$shared/lib';
import type { UnifiedFont } from '../../types';
export const selectedFontsStore = createEntityStore<UnifiedFont>([]);