Authored by 张丽霞

删除文件,review by redding

'use strict';
import React, {Component} from 'react';
import ReactNative, {
View,
ScrollView,
Text,
NativeAppEventEmitter,
StyleSheet,
} from 'react-native';
export default class Student extends Component {
constructor(props) {
super(props);
}
componentDidMount() {
}
render() {
return (
<View style={styles.container}>
<Text>
student页面
</Text>
</View>
);
}
}
let styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f0f0f0',
},
});
... ... @@ -15,9 +15,7 @@ import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as studentActions from '../reducers/student/studentActions';
import Student from '../components/student/Student';
import Register from '../components/student/Register';
// import Result from '../components/student/Result';
const actions = [
studentActions,
... ...