UNPKG

@settlemint/sdk-next

Version:

Next.js integration module for SettleMint SDK, providing React components and middleware for web applications

22 lines (20 loc) 523 B
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.ts.map