TabExplore.js 383 B

12345678910111213141516171819202122
  1. /**
  2. * 新版充电站Explore页面
  3. * @邠心vbe on 2023/02/06
  4. */
  5. import React, { Component } from 'react';
  6. import { View, Text } from 'react-native';
  7. export default class TabExplore extends Component {
  8. constructor(props) {
  9. super(props);
  10. this.state = {
  11. };
  12. }
  13. render() {
  14. return (
  15. <View>
  16. <Text> Comming soon... </Text>
  17. </View>
  18. );
  19. }
  20. }