|  |  |  | 
|---|
|  |  |  | import { AgvShowDetail } from "./show/AgvShowDetail"; | 
|---|
|  |  |  | import { AgvShowAside } from "./show/AgvShowAside"; | 
|---|
|  |  |  | import { AgvShowTask } from "./show/AgvShowTask"; | 
|---|
|  |  |  | import { AgvShowError } from "./show/AgvShowError"; | 
|---|
|  |  |  | import CustomerTopToolBar from "../components/EditTopToolBar"; | 
|---|
|  |  |  | import { useTheme } from '@mui/material/styles'; | 
|---|
|  |  |  | import PulseSignal from "../components/PulseSignal"; | 
|---|
|  |  |  | 
|---|
|  |  |  | justifyContent: 'space-between', | 
|---|
|  |  |  | alignItems: 'center', | 
|---|
|  |  |  | }}> | 
|---|
|  |  |  | <CustomerTopToolBar /> | 
|---|
|  |  |  | <CustomerTopToolBar backPrevious /> | 
|---|
|  |  |  | <Box mt={1} mr={1}> | 
|---|
|  |  |  | <Stack direction='row'> | 
|---|
|  |  |  | <Box mt={.8} mr={2}> | 
|---|
|  |  |  | 
|---|
|  |  |  | <TabbedShowLayout.Tab label="page.agv.show.tabs.task" path="tasks"> | 
|---|
|  |  |  | <AgvShowTask agvId={record.id} /> | 
|---|
|  |  |  | </TabbedShowLayout.Tab> | 
|---|
|  |  |  | <TabbedShowLayout.Tab label="page.agv.show.tabs.error" path="errors"> | 
|---|
|  |  |  | <AgvShowError agvId={record.id} /> | 
|---|
|  |  |  | </TabbedShowLayout.Tab> | 
|---|
|  |  |  | </TabbedShowLayout> | 
|---|
|  |  |  | </CardContent> | 
|---|
|  |  |  | </Card> | 
|---|