Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

product-os/jellyfish-ui-components

Repository files navigation

Notice: This module has been discontinued.

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>
	}
}