import React, { Component } from 'react'; import { TabBar } from 'antd-mobile'; class TabBarExample extends Component { constructor(props) { super(props); this.state = { hidden: false, }; } } export default TabBarExample;