Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 358 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 358 Bytes

Admin UI Components

This library contains components used by the CockroachDB Admin UI.

  npm install --save-dev @cockroachlabs/admin-ui-components

Components are exported individually from the package,

import { Drawer } from "@cockroachlabs/admin-ui-components";

export default props => (
  <div>
    <Drawer />
  </div>
);