Components
Toolbar and Actions
Drive includes navigation and toolbar primitives that help structure a file-manager screen.
Shared navigation exports include:
DriveHeaderDriveHeaderBreadcrumbsDriveHeaderToolsDriveToolbarDriveToolbarBreadcrumbsDriveToolbarTools
Pair these with provider-specific commands and your own app actions such as upload, create folder, archive, restore, or open details.
Provider aliases
The local and Google provider packages re-export these shared pieces under provider-specific names, for example:
LocalDriveToolbarLocalDriveViewSwitcherGoogleDriveToolbarGoogleDriveViewSwitcher
That keeps page imports provider-local even when the underlying implementation is shared.
Recommended action split
- breadcrumbs and view switchers belong in the toolbar layer
- node and bulk mutations belong in Drive commands
- data fetching and invalidation belong in your page/query layer