UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

15 lines 385 B
import { Asset, Farm } from "../../types"; export interface View { assets?: Asset[]; farms?: Farm[]; page?: "vault" | "farm"; charts?: { value?: any; volume?: any; }; responsive?: boolean; onPage?: Function; onSelect?: Function; } export default function View(props: View): import("react").JSX.Element; //# sourceMappingURL=View.d.ts.map