fix(01-code-splitting): convert ErrorBoundary MUI icons to individual imports

- Converted 5 barrel imports (ErrorOutline, Refresh, Home, ExpandMore, BugReport) to per-file default imports
- No JSX changes needed (aliases already matched variable names)
This commit is contained in:
ajaysi
2026-05-08 11:50:53 +05:30
parent ab827e9ab9
commit 98a1cc91a2

View File

@@ -10,13 +10,11 @@ import {
Collapse,
Divider
} from '@mui/material';
import {
ErrorOutline as ErrorIcon,
Refresh as RefreshIcon,
Home as HomeIcon,
ExpandMore as ExpandMoreIcon,
BugReport as BugReportIcon
} from '@mui/icons-material';
import ErrorIcon from '@mui/icons-material/ErrorOutline';
import RefreshIcon from '@mui/icons-material/Refresh';
import HomeIcon from '@mui/icons-material/Home';
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import BugReportIcon from '@mui/icons-material/BugReport';
interface ErrorBoundaryProps {
children: ReactNode;