@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).
16 lines • 403 B
TypeScript
export interface PartContainer {
state?: boolean | null;
content?: any;
left?: {
children?: any;
onClick?: Function;
};
right?: {
children?: any;
onClick?: Function;
};
style?: object;
onBack?: Function;
}
export default function PartContainer(props: PartContainer): import("react").JSX.Element;
//# sourceMappingURL=PartContainer.d.ts.map