ant-design/components/typography/__tests__/demo.test.tsx
2023-05-06 15:49:37 +08:00

17 lines
494 B
TypeScript

import * as React from 'react';
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
demoTest('typography');
rootPropsTest('typography', (Typography, props) => <Typography.Title {...props} />, {
name: 'Typography.Title',
});
rootPropsTest('typography', (Typography, props) => <Typography.Text {...props} />, {
name: 'Typography.Text',
});
rootPropsTest('typography', (Typography, props) => <Typography.Paragraph {...props} />, {
name: 'Typography.Paragraph',
});