mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
15 lines
331 B
JavaScript
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'));
|