Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 433 Bytes

File metadata and controls

23 lines (18 loc) · 433 Bytes

Install via npm:

npm install @onepercentio/one-ui

Or include it directly in HTML:

<script src="https://github.com/onepercentio/one-ui/releases/download/v1.3.5/bundle.js"></script>

When loaded via script in HTML, the library is exposed as the global OneUI object:

function App() {
    return (
        <OneUI.Button type="button">
            Hello from OneUI
        </OneUI.Button>
    );
}