mirror of
https://github.com/apache/superset.git
synced 2026-05-29 20:29:34 +00:00
* Make Welcome page into a simple React app This removes a dependency on datatables, we should be able to get rid of it as we re-write the Table and PivotTable viz * tests/lint * Bump node version to latest
18 lines
401 B
JavaScript
18 lines
401 B
JavaScript
/* eslint no-unused-vars: 0 */
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { Panel, Row, Col, FormControl } from 'react-bootstrap';
|
|
|
|
import { appSetup } from '../common';
|
|
import App from './App';
|
|
|
|
appSetup();
|
|
|
|
const container = document.getElementById('app');
|
|
const bootstrap = JSON.parse(container.getAttribute('data-bootstrap'));
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
container,
|
|
);
|