@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.
9 lines (8 loc) • 474 B
TypeScript
import * as React from "react";
declare type ConsumerComponent = React.ExoticComponent<React.ConsumerProps<any>>;
export interface Props extends React.PropsWithChildren<{}> {
_consumers?: ConsumerComponent[];
_logs?: (ConsumerComponent | undefined)[];
}
export declare const CreateContextFeed: (consumer: React.ExoticComponent<React.ConsumerProps<any>>, logs: React.ExoticComponent<React.ConsumerProps<any>> | undefined) => (props: Props) => JSX.Element;
export {};