blob: 6bf4e9517e5d3a0ba656ea82716d4c3d9dc3078b [file] [log] [blame] [raw]
import { Box, Typography, Chip } from '@mui/material';
function VersionInfo({ versions }) {
return (
<Box>
<Typography variant="subtitle1" gutterBottom>
海外配置版本: <Chip label={versions.oversea} color="primary" size="small" />
</Typography>
<Typography variant="subtitle1">
国内配置版本: <Chip label={versions.cn} color="primary" size="small" />
</Typography>
</Box>
);
}
export default VersionInfo;