Components
There are 2 types of components exported for each service:
Button
Form
Button
You can place the button anywhere inside the app and on clicking the button opens up a modal with the Form inside.
The button accepts an optional prop title
, which accepts a string
to display the custom modal Form title.
Example:
import React from "react";
import { CreateERC20Button } from "@cryption/dapp-factory-sdk";
const ERC20 = () => {
return (
<>
<CreateERC20Button />
<CreateERC20Button title="Create ERC20 token" />
</>
);
};
export default ERC20;
Result :


Form
You can import the Form component like this:
import { CreateERC20 } from "@cryption/dapp-factory-sdk";
const ERC20 = () => {
return <CreateERC20 />;
};
export default ERC20;
Result :

Last updated