import React from "react"; import styles from "./index.less"; import { Tabs, Select } from "antd"; const { TabPane } = Tabs; const { Option } = Select; class Demo extends React.Component { state = { tabPosition: "top" }; changeTabPosition = tabPosition => { this.setState({ tabPosition }); }; render() { return (
Tab position:
Content of Tab 1 Content of Tab 2 Content of Tab 3
); } } export default () => (
);