[change] export or replace react-dom methods

This change adds the react-dom methods to the main export, since this is
a Web-only environment (React Native does something similar). It
augments the default render methods in order to move style sheet
management under the control of the library (necessary for
code-splitting support).

Relates to #52
This commit is contained in:
Nicolas Gallagher
2015-12-22 00:21:30 +00:00
parent c850a5fa8c
commit cc10de43eb
6 changed files with 103 additions and 26 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ module.exports = {
},
externals: [{
'react': true,
'react-dom': true
'react-dom': true,
'react-dom/server': true
}],
output: {
filename: 'react-native-web.js',