To improve our application’s performance, we made it extensible. Everything from the UI, IPFS connection, and Appchain connection is modular and extensible by other apps to build upon.
@debionetwork/ui-icons
A collection of icons used in DeBio Networks UI apps.
DeBio Ui is a collection of components (vue based) jointly developed by the DeBio team, which is intended to make it easier to develop a project without having to re-create your components repeatedly.
Installation:
$ npm i @debionetwork/ui-components
Example:
import Vue from "vue"
import UiComponents from "@debionetwork/ui-components"
import "@debionetwork/ui-components/dist/debionetwork-ui-components.css"
Vue.use(UiComponents)
new Vue({
UiComponents, // Put here
render: h => h(App)
)}.$mount("#app")
Repository:
@debio-network/polkadot-provider
Javascript Library to connect and interact with the DeBio Network blockchain.