Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Blockle/blocks-pre

Repository files navigation

@blockle/blocks

Get started

Install with yarn

yarn add @blockle/blocks

Install with npm

npm install --save @blockle/blocks

Basic example

import '@blockle/blocks/dist/blocks.css';
import { Button } from '@blockle/blocks';

const MyComponent = () => <Button>Hi</Button>;