File size: 680 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import React from 'react';
import { Flex, Progress } from 'antd';
import useLocale from '../../../../.dumi/hooks/useLocale';
const locales = {
cn: {
loading: '加载中',
},
en: {
loading: 'Loading',
},
};
const Demo: React.FC = () => {
const [locale] = useLocale(locales);
return (
<Flex vertical gap="middle">
<Progress type="line" percent={50} style={{ width: 320 }} />
<Progress percent={50} format={() => locale.loading} style={{ width: 320 }} />
<Progress percent={100} status="success" style={{ width: 320 }} />
<Progress percent={70} status="exception" style={{ width: 320 }} />
</Flex>
);
};
export default Demo;
|