import React from 'react';
import Styles from './styles.module.less';
import { Affix, Alert, Button, Select, Space, Typography } from 'antd';
const Cos = (props) => {
const { currentConfig, dirty, entity, name, selections } = props.data;
const { t, setValue, resetConfig, updateConfig } = props.methods;
return (<>
您正在更新
{entity}
对象
{name}
的COS配置,请谨慎操作
} type="info" showIcon action={
}/>
默认COS源
>);
};
export default Cos;