MainView.tsx currently contains a lot of UI and modal-related code in a single file, which makes it difficult to read and manage.
I’d like to work on separating sections like the Breadcrumb, Toolbar, and Action Modals into their own reusable React components while keeping the current functionality unchanged.
The plan is to move the existing JSX and related logic into smaller component files and pass the required state/functions through props so the structure becomes cleaner and easier to maintain.
MainView.tsxcurrently contains a lot of UI and modal-related code in a single file, which makes it difficult to read and manage.I’d like to work on separating sections like the Breadcrumb, Toolbar, and Action Modals into their own reusable React components while keeping the current functionality unchanged.
The plan is to move the existing JSX and related logic into smaller component files and pass the required state/functions through props so the structure becomes cleaner and easier to maintain.