ant-design/components/segmented/demo/with-name.tsx

9 lines
219 B
TypeScript
Raw Normal View History

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;