Explore.js 432 B

12345678910111213141516171819202122232425
  1. /**
  2. * Explore页面
  3. * @邠心vbe on 2021/04/12
  4. */
  5. import React, { Component } from 'react';
  6. import { View, Text } from 'react-native';
  7. export default class Explore extends Component {
  8. constructor(props) {
  9. super(props);
  10. this.state = {
  11. };
  12. }
  13. render() {
  14. return (
  15. <View style={{
  16. padding: 16,
  17. ...this.props.style
  18. }}>
  19. <Text> Comming soon... </Text>
  20. </View>
  21. );
  22. }
  23. }