refactor: reorganize shared/lib into per-function subfolders

This commit is contained in:
Ilia Mashkov
2026-04-24 11:41:43 +03:00
parent f3b4e1d064
commit 41edc7edf7
9 changed files with 5 additions and 5 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
export type { ClassValue } from 'clsx'; export type { ClassValue } from 'clsx';
export { cn } from './cn'; export { CONTACT_LINKS } from './config/config';
export { CONTACT_LINKS } from './config'; export * from './fonts/fonts';
export * from './fonts'; export { cn } from './utils/cn/cn';
export * from './formatDate'; export * from './utils/formatDate/formatDate';
export { groupByKey } from './groupByKey'; export { groupByKey } from './utils/groupByKey/groupByKey';