Basic templating tests
Showing
7 changed files
with
33 additions
and
5 deletions
src/containers/app.js
0 → 100644
src/views/input.rt
0 → 100644
-
Please register or sign in to post a comment
... | ... | @@ -3,5 +3,6 @@ |
<title>Template Test</title> | ||
</head> | ||
<body> | ||
<div id="app" /> | ||
</body> | ||
</html> | ||
... | ... |
<div> | ||
<h1>Its home time</h1> | ||
<div rt-stateless> | ||
<h1>The message is <q>{props.message}</q></h1> | ||
{props.input} | ||
</div> | ||
... | ... |
... | ... | @@ -29,5 +29,6 @@ module.exports = { |
new HtmlWebpackPlugin({ | ||
template: 'src/index.html' | ||
}) | ||
] | ||
], | ||
devtool: 'sourcemap', | ||
} | ||
... | ... |