superset/caravel/assets/javascripts/index.jsx
Alanna Scott 1101de5ae4 [js linting] use airbnb eslint settings (#796)
* add airbnb eslint settings and lint all the code

* fix linting erros
2016-07-27 16:57:05 -07:00

15 lines
331 B
JavaScript

import React from 'react';
import { render } from 'react-dom';
import { Jumbotron } from 'react-bootstrap';
function App() {
return (
<Jumbotron>
<h1>Caravel</h1>
<p>Extensible visualization tool for exploring data from any database.</p>
</Jumbotron>
);
}
render(<App />, document.getElementById('app'));