Added base webpack configuration and needed shellscripts.

This commit is contained in:
Chris
2015-08-27 17:07:53 +02:00
parent dce9142863
commit 5e32fef364
13 changed files with 262 additions and 9 deletions
+19
View File
@@ -0,0 +1,19 @@
require('normalize.css');
require('styles/App.css');
import React from 'react/addons';
class AppComponent extends React.Component {
render() {
return (
<div>
Content
</div>
);
}
}
AppComponent.defaultProps = {
};
export default AppComponent;
+5
View File
@@ -0,0 +1,5 @@
import React from 'react';
import App from './Main';
// Render the main component into the dom
React.render(<App />, document.getElementById('app'));