mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
|
import React from 'react';
|
||
|
import { Input } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Input placeholder="Basic usage" />;
|
||
|
|
||
|
export default App;
|