@dorgtech/daocomponents
Version:
Componentizing [DAOstack's client library](https://github.com/daostack/client), enabling easier React application integration. The hope is to be able to turn any app into a DAO enabled dApp by adding ~2 components.
12 lines (11 loc) • 312 B
TypeScript
import * as React from "react";
import { ComponentLogs, ComponentListLogs } from "../../src";
interface Props {
logs: ComponentLogs | ComponentListLogs;
}
export default class LoadingView extends React.Component<Props> {
private errors;
private findErrorKeys;
render(): JSX.Element;
}
export {};