react-native-navigation的迁移库

ExampleComponent.js 282B

12345678910111213141516
  1. import React, {Component} from 'react';
  2. import {
  3. Text
  4. } from 'react-native';
  5. export default class ExampleComponent extends Component {
  6. constructor(props) {
  7. super(props);
  8. }
  9. render() {
  10. return (
  11. <Text>I am a regular non-redux aware component</Text>
  12. );
  13. }
  14. }