【发布时间】:2017-04-06 17:56:44
【问题描述】:
我是新来的,我不知道这行代码有什么问题。 我尝试换行,错误只会改变主题。
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { Textbox } from './src/Textbox';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text>Hello Hector. Open up App.js to start working on your app!</Text>
<Text>Changes you make will automatically reload.</Text>
<Text>Shake your phone to open the developer menu.</Text>
</View>
);
}
};
export class Textbox extends Component ({
render () {
return (
<View style={styles.useless}>
<Textbox />
</View>
);
},
});
【问题讨论】:
标签: react-native