webpack-dev-server を実行してから localhost:8080 に移動すると、アプリがスタイリングとともに読み込まれます。ただし、CSS スタイルは、ヘッダー内ではなく、個々の div の「style」属性に表示されます。これが「react-style」のポイントだと思いました。
私の結果のHTML:
<html><head>
<style type="text/css"></style></head>
<body style="zoom: 1;">
<div id="app"><div data-reactid=".0"><div style="height:200px;width:200px;border:1px solid black;" data-reactid=".0.0"><div data-reactid=".0.0.0"></div><div style="text-align:center;font-size:10px;" data-reactid=".0.0.1">new</div></div></div></div>
<script src="bundle.js"></script>
</body></html>
さらに、代わりにhttp://localhost:8080/webpack-dev-server/bundleにアクセスすると、次のエラーが発生します。
Uncaught Error: Invariant Violation: _registerComponent(...): Target container is not a DOM element.
ここに私のindex.htmlがあります:
<!doctype html>
<html>
<head>
</head>
<body>
<div id="app"></div>
<script src="bundle.js"></script>
</body>
</html>
webpack.config.js:
'use strict';
module.exports = {
entry: './modules/main.js',
output: {
filename: 'bundle.js',
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'jsx-loader?harmony'
},
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{
test: /\.(png|jpg)$/,
loader: 'url-loader?limit=8192'
} // inline base64 URLs for <=8k images, direct URLs for the rest
]
}
};
mains.js:
/** @jsx React.DOM */
var React = require('react');
var HoverAction = require('./HoverAction/HoverAction');
var Application = React.createClass({
render: function() {
return (
<div>
<HoverAction title="new"/>
</div>
);
}
});
if (typeof window !== 'undefined') {
React.render(<Application />, document.getElementById('app'));
}
HoverAction.js:
/** @jsx React.DOM */
'use strict';
var StyleSheet = require('react-style');
var React = require('react');
var HoverAction = React.createClass({
render: function() {
return (
<div style={HoverActionStyles.normal}>
<div ></div>
<div style={HoverActionTitleStyle.normal} >{this.props.title}</div>
</div>
);
}
});
var HoverActionStyles = StyleSheet.create({
normal: {
height: '200px',
width: '200px',
border: '1px solid black'
}
});
var HoverActionTitleStyle = StyleSheet.create({
normal: {
textAlign: 'center',
fontSize: '10px'
}
});
module.exports = HoverAction;