@settlemint/sdk-next
Version:
Next.js integration module for SettleMint SDK, providing React components and middleware for web applications
22 lines (21 loc) • 559 B
text/typescript
/* SettleMint Next.js Components */
import { ReactElement } from "react";
//#region src/components/test.d.ts
/**
* The props for the HelloWorld component.
*/
interface HelloWorldProps {
name?: string;
}
/**
* A simple Hello World component that greets the user.
*
* @param props - The props for the HelloWorld component.
* @returns A React element that displays a greeting to the user.
*/
declare function HelloWorld({
name
}: HelloWorldProps): ReactElement;
//#endregion
export { HelloWorld, HelloWorldProps };
//# sourceMappingURL=test.d.cts.map