tkn-ui
Tokenomy User Interface Kit provides you with guidelines, components and ui toolkit to boost the user experience of your products.
Quickly build beautiful React apps. Tokenomy User Interface Kit provides you with guidelines, components and templates to boost the user experience of your products. Start with Tokenomy UI.
Tokenomy UI is available as an npm package.
// with npm
npm install tokenomy-ui
// with yarn
yarn add tokenomy-ui
Here is a quick example to get you started, it's all you need:
// Import vendors
import * as React from 'react';
import ReactDOM from 'react-dom';
// Import the Button component
import Button from 'tokenomy-ui/inputs/Button';
function App() {
return <Button variant="contained">Hello World</Button>;
}
ReactDOM.render(<App />, document.querySelector('#app'));
Check out our documentation website.
If you have recently updated, please read the changelog for details of what has changed.