mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-16 14:08:27 +02:00
8 lines
219 B
TypeScript
8 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;
|