artistco-ui

Artistco UI components kit

Usage no npm install needed!

<script type="module">
  import artistcoUi from 'https://cdn.skypack.dev/artistco-ui';
</script>

README

artistco-ui

repository of commonly used artistco UI components

Install

npm install --save artistco-ui

Usage

import React, { Component } from 'react'

import { ThemeProvider } from 'styled-components';

import { theme, Paper } from 'artistco-ui'

class Example extends Component {
  render () {
    return (
      <ThemeProvider theme={theme}>
        <Paper>Ok</Paper>
      </ThemeProvider>
    )
  }
}

Dev

Clone on your local

git clone git@bitbucket.org:cloudforartists/artistco-ui.git
cd artistco-ui
npm link

And in the repo you want to use

npm link artistco-ui