All files / javascripts index.jsx

0% Statements 0/5
100% Branches 0/0
0% Functions 0/1
0% Lines 0/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                             
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'));