chore: add import/export

This commit is contained in:
Ilia Mashkov
2026-02-01 11:52:32 +03:00
parent 27f637531b
commit 010643e398
2 changed files with 9 additions and 2 deletions

View File

@@ -1,2 +1,5 @@
export { displayedFontsStore } from './model';
export { FontDisplay } from './ui';
export {
FontDisplay,
FontSampler,
} from './ui';

View File

@@ -1,3 +1,7 @@
import FontDisplay from './FontDisplay/FontDisplay.svelte';
import FontSampler from './FontSampler/FontSampler.svelte';
export { FontDisplay };
export {
FontDisplay,
FontSampler,
};