mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
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;
|