0.2.8 • Published 1 year ago

@blocktheoryhq/ui-lib v0.2.8

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Blocktheory UI Library

Blocktheory UI library is a set of React UI components that can bring uniformity and ease of access across different web projects

To Install

yarn add @blocktheory/ui-lib
or
npm i @blocktheory/ui-lib

To import as component

import { Header } from "@blocktheory/ui-lib";


 export default function Demo() {
    return (
        <div>
            <Header />
        </div>
    );
}