Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/contiamo/operational-ui

Building blocks for effective operational interfaces
https://github.com/contiamo/operational-ui

component-library design-system react-components visualization

Last synced: 4 days ago
JSON representation

Building blocks for effective operational interfaces

Awesome Lists containing this project

README

        

# Operational UI Components

The `@operational/components` package contains simple, stateless UI building blocks - your typical input fields, buttons, cards, grids, and so on. See [demo and docs](https://operational-ui.netlify.com/).

## Getting Started

Install the package via npm or yarn:

`npm install @operational/components`

Create your first application like so:

```js static
import * as React from "react"
import { Button, OperationalUI } from "@operational/components"

// Always wrap your interface in the `OperationalUI` wrapper,
// which does important setup work, and takes a single child element.
// See https://www.npmjs.com/package/%40operational%2Fcomponents
const App = () => (

Hello

)
```

## Contributing

To get started contributing, please check out our [contributing guidelines](CONTRIBUTING.md).