import React from 'react'; import { Tabs } from 'antd'; const items = new Array(3).fill(null).map((_, i) => { const id = String(i + 1); return { label: `Tab Title ${id}`, key: id, children: ( <>
Content of Tab Pane {id}
Content of Tab Pane {id}
Content of Tab Pane {id}
> ), }; }); const App: React.FC = () => (