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>Superset</h1> <p>Extensible visualization tool for exploring data from any database.</p> </Jumbotron> ); } render(<App />, document.getElementById('app')); |