/*
开启Strict Mode,这种模式下可以将错误处理提高。
*/
'use strict'
/*
将react-native模块加载进来,并将它赋值给React变量
这个命令相当于swfit中导入库或者链接库
*/
var React = require('react-native');
/*
AppRegistry定义了App的入口,并提供了根组件
*/
AppRegistry.registerComponent('weekdays',function(){
return Weekdays
});
react程序的基本结构
1,//Import some code we need,导入我们需要的库或代码
var React = require('react-native');
2,//Create a react component,创建React组件
3,// Style the React component,给组件添加样式
4,//Show the react component on the screen,在屏幕上展示组件