Kureev / react-native-navbar

Navbar component for React Native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

about es6 issue import react-native-navbar

slowsay opened this issue · comments

I think about add es6 code write :

index.js

module.exports =NavigationBar
modify by:
export default NavigationBar

This is happening because I'm on the latest version of react native 0.27.x which doesn't support importing React props from react native. You must use react exclusively.

import React, {
  Component,
  View,
  Text,
  StyleSheet,
  TouchableHighlight,
  TextInput,
  PropTypes,
} from 'react-native';

Needs to be

import React, {Component, PropTypes} from "react";
import {View, Text, StyleSheet, TouchableHighlight, TextInput} from "react-native";

I believe this one is not actual anymore. Feel free to ping me if you disagree