RN的项目结构

React-Native的项目结构

  • src 业务 JS 源代码
|- actions       动作层
|- reduers       数据处理层
|- components    组件
|- constants     常量 
|- middleware    网络层
|- containers    界面
|- modules       原生支持模块
|- models        Model层
|- untils        工具类
|- store         缓存
|- styles        css样式
|- tpl           组件模版 
|- app.js        项目 js 入口,面对于项目, (有别于 index.*.js,面向于原生调用)

你可能感兴趣的:(RN的项目结构)