react-deso
v0.1.0-alpha
Published
A React UI Library for interfacing with the DeSo Blockchain
Downloads
2
Maintainers
Readme
react-deso
A React UI Library for interfacing with the DeSo Blockchain
Installation 🔨
Using NPM:
npm install react-deso
Note: react-deso uses Ant Design for its components and styling
Usage 💻
Import the AgiliteReact Component
import AgiliteReact from "agilite-react";
Basic Renderding
- When the component is rendered without any properties it uses default properties to render a simple SPA
function App() {
return <AgiliteReact />;
}