Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 669 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 669 Bytes

@deephaven/dashboard

React component for displaying a Deephaven dashboard. Register plugins to display components.

Install

npm install --save @deephaven/dashboard

Usage

import React, { Component } from 'react';
import Dashboard from '@deephaven/dashboard';
import MyDashboardPlugin from './MyDashboardPlugin';

class Example extends Component {
  render() {
    return (
      <Dashboard>
        <MyDashboardPlugin />
      </Dashboard>
    );
  }
}

Legal Notices

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.