mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-16 14:08:27 +02:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import React from 'react';
|
|
import { Segmented } from 'antd';
|
|
|
|
const Demo: React.FC = () => (
|
|
<Segmented options={[123, 456, 'longtext-longtext-longtext-longtext']} block />
|
|
);
|
|
|
|
export default Demo;
|