refactor: move components in src/components/ui to src/shared/view/ui

This commit is contained in:
Haileyesus
2026-02-27 22:49:18 +03:00
parent 040c300c29
commit f2e195bd08
30 changed files with 51 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
import { memo, useMemo } from 'react';
import { CheckCircle2, Circle, Clock, type LucideIcon } from 'lucide-react';
import { Badge } from '../../../../ui/badge';
import { Badge } from '../../../../../shared/view/ui';
type TodoStatus = 'completed' | 'in_progress' | 'pending';
type TodoPriority = 'high' | 'medium' | 'low';