This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
react
Watch
0
Star
0
Fork
You've already forked react
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
41b4d3958c
react
/
packages
/
react-dom
/
server.js
4 lines
65 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Upgrade ESLint, fix code
2015-08-11 07:44:38 +08:00
'use strict'
;
Build renderers into their individual npm packages (#7168) This copies modules into three separate packages instead of putting it all in React. The overlap in shared and between renderers gets duplicated. This allows the isomorphic package to stay minimal. It can also be used as a direct dependency without much risk. This also allow us to ship versions to each renderer independently and we can ship renderers without updating the main react package dependency.
2016-08-11 09:17:49 +08:00
module
.
exports
=
require
(
'./lib/ReactDOMServer'
)
;