refactor: move constants to domain modules

This commit is contained in:
Maze Winther
2026-04-14 18:17:14 +02:00
parent 34c67ef8e8
commit 6de6c7fd95
98 changed files with 230 additions and 386 deletions
+7
View File
@@ -0,0 +1,7 @@
export const PREVIEW_ZOOM_PRESETS = [25, 50, 75, 100, 150, 200];
export const PREVIEW_ZOOM = {
min: 0.25,
max: 16,
step: 1.25,
} as const;