Install via npm:
npm install @onepercentio/one-uiOr include it directly in HTML:
<script src="https://github.com/onepercentio/one-ui/releases/download/v1.3.2/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>
);
}