@balena/jellyfish-ui-components

UI components library for Jellyfish

Usage no npm install needed!

<script type="module">
  import balenaJellyfishUiComponents from 'https://cdn.skypack.dev/@balena/jellyfish-ui-components';
</script>

README

Jellyfish UI Components

This module is a collection of re-usable React component that Jellyfish uses to build all of its official user interfaces.

Usage

Below is an example how to use this library:

import {
    Link
} from '@balena/jellyfish-ui-components'

const RENDERERS = {
    name: (name, item) => {
        return <Link append={item.slug || item.id}>{name}</Link>
    }
}