| | |
| | | import { Droppable } from '@hello-pangea/dnd'; |
| | | import { Box, Stack, Typography } from '@mui/material'; |
| | | |
| | | import { |
| | | useTranslate, |
| | | } from 'react-admin'; |
| | | import { MissionCard } from './MissionCard'; |
| | | |
| | | export const MissionColumn = ({ stage, missions, }) => { |
| | | const translate = useTranslate(); |
| | | |
| | | return ( |
| | | <Box |
| | |
| | | }} |
| | | > |
| | | <Stack alignItems="center"> |
| | | <Typography variant="subtitle1"> |
| | | {stage} |
| | | <Typography variant="body1" sx={{ |
| | | // fontWeight: 'bold' |
| | | }}> |
| | | {translate(`page.mission.enums.posType.${stage}`)} |
| | | </Typography> |
| | | <Typography |
| | | variant="subtitle1" |