reactnativecn / react-native.cn

reactnative.cn home site.
http://reactnative.cn
Other
588 stars 507 forks source link

Stable #166

Closed zeayal closed 7 years ago

zeayal commented 7 years ago
// 解决部分手机报错,因为没有导出 class 添加 ES6 默认导出语法
export default class HelloWorldApp extends Component {
  render() {
    return (
      <Text>Hello world!</Text>
    );
  }
}