mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
b3428c678f
* test: add test case * chore: use console.warn instead * chore: support agg * chore: fix lint
15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import React from 'react';
|
|
import { Alert, ConfigProvider, Input, Typography } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Typography.Title level={4}>Open single page to check the console</Typography.Title>
|
|
<ConfigProvider warning={{ strict: false }}>
|
|
<Alert closeText="deprecated" />
|
|
<Input.Group />
|
|
</ConfigProvider>
|
|
</>
|
|
);
|
|
|
|
export default App;
|