0.0.1 • Published 2 years ago

@designstringstudio/front-ui-actions v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Frontier UI Library

Frontier 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 @frontierwallet/front-ui
or
npm i @frontierwallet/front-ui

To import as component

import { Header } from "@frontierwallet/front-ui";
import "@frontierwallet/front-ui/style.css";

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