0.1.0-alpha • Published 2 years ago

react-deso v0.1.0-alpha

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

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 />;
}