React component for displaying a Deephaven dashboard. Register plugins to display components.
npm install --save @deephaven/dashboard
import React, { Component } from 'react';
import Dashboard from '@deephaven/dashboard';
import MyDashboardPlugin from './MyDashboardPlugin';
class Example extends Component {
render() {
return (
<Dashboard>
<MyDashboardPlugin />
</Dashboard>
);
}
}
Deephaven Data Labs and any contributors grant you a license to the content of this repository under the Apache 2.0 License, see the LICENSE file.