@enclavemoney/enclave-wallet-playground
Version:
A simple playground for enclave wallet SDK
13 lines (12 loc) • 426 B
TypeScript
import React from "react";
import { ThemeMode, Theme } from "../../types/theme";
interface ActivityDetailsProps {
activity?: any;
activityId?: string;
apiKey: string;
onBack: () => void;
theme?: ThemeMode;
customTheme?: Theme;
}
export default function ActivityDetails({ activity: initialActivity, activityId, apiKey, onBack, theme, customTheme, }: ActivityDetailsProps): React.JSX.Element;
export {};