react.js中怎么使用动画
3 回答
慕工程0101907
TA贡献1887条经验 获得超5个赞
react一般情况下你需要去把一个js输出(export)然后再用另一个文件去调用(require)
12345678 | test.js module.exports = React.createClass({ displayName: "test" , ... }) var test = require( "test.js" ); |
添加回答
举报
0/150
提交
取消