mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 18:04:12 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
|
import React from 'react';
|
||
|
import { Segmented } from 'antd';
|
||
|
|
||
|
const Demo: React.FC = () => (
|
||
|
<Segmented<string> options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} name="group" />
|
||
|
);
|
||
|
|
||
|
export default Demo;
|