Report incorrect code
Copy
Ask AI
function Fund(props: FundProps): Element;
Parameters
| Parameter | Type | Description |
|---|---|---|
props | FundProps | The props of the Fund component. |
Returns
Element
The Fund component.
Examples
Report incorrect code
Copy
Ask AI
// Basic usage
const App = () => {
const fetchBuyQuote: FundProps["fetchBuyQuote"] = async (params) => {
// call the buy quote API
}
const fetchBuyOptions: FundProps["fetchBuyOptions"] = async params => {
// call the buy options API
}
return (
<Fund
country="US"
subdivision="NY"
cryptoCurrency="eth"
fiatCurrency="usd"
fetchBuyQuote={fetchBuyQuote}
fetchBuyOptions={fetchBuyOptions}
network="base"
presetAmountInputs={[10, 25, 50]}
/>
)
}
Report incorrect code
Copy
Ask AI
// Example customizing the children to render the title as a page title
// and add a custom error message
const App = () => {
const fetchBuyQuote: FundProps["fetchBuyQuote"] = async (params) => {
// call the buy quote API
}
const fetchBuyOptions: FundProps["fetchBuyOptions"] = async params => {
// call the buy options API
}
const title = "Buy ETH";
const titleId = useId();
const submitLabel = "Purchase now";
return (
<Fund
country="US"
subdivision="NY"
cryptoCurrency="eth"
fiatCurrency="usd"
fetchBuyQuote={fetchBuyQuote}
fetchBuyOptions={fetchBuyOptions}
network="base"
presetAmountInputs={[10, 25, 50]}
submitLabel={submitLabel}
title={title}
>
<FundTitle as="h1" id={titleId}>{title}</FundTitle>
<FundForm aria-labelledby={titleId} submitLabel={submitLabel}>
{({ view, Content }) => (
<>
{Content}
{view === "error" && <p>Contact support at support@example.com</p>}
</>
)}
</FundForm>
<FundFooter />
</Fund>
)
}