Add npm package.json and setup webpack to transpile ES6/JSX and compile JS files for frontend refactor. See readme.md in assets/ for npm setup instructions and visit the panoramix home page for a React sandbox.

This commit is contained in:
Chris Williams
2016-02-19 11:39:50 -08:00
parent 20bd4ca0eb
commit f40c024fda
17 changed files with 7585 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import { render } from 'react-dom';
import { Jumbotron } from 'react-bootstrap';
class App extends React.Component {
render () {
return (
<Jumbotron>
<h1>Panoramix</h1>
<p>Extensible visualization tool for exploring data from any database.</p>
</Jumbotron>
);
}
}
render(<App />, document.getElementById('app'));