mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
|
import React from 'react';
|
||
|
import { Rate } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Rate disabled defaultValue={2} />;
|
||
|
|
||
|
export default App;
|