Skip to content

Commit

Permalink
Update BatchOptin.jsx
Browse files Browse the repository at this point in the history
Added FAQ
  • Loading branch information
LoafPickleWW authored May 30, 2024
1 parent 8c77e30 commit d3007b8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/pages/BatchOptin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { TOOLS } from "../constants";

import { useSearchParams } from "react-router-dom";
import InfinityModeComponent from "../components/InfinityModeComponent";
import FaqSectionComponent from "../components/FaqSectionComponent";


export function BatchOptin() {
const [csvData, setCsvData] = useState(null);
Expand Down Expand Up @@ -193,6 +195,20 @@ export function BatchOptin() {
<br />
You can reload the page if you want to stop/restart the process!
</p>
<FaqSectionComponent
faqData={[
{
question: "What is Opting into an Asset?",
answer:
"On Algorand, you can not receive an Asset unless your wallet gives permission to receive it. This prevents people from sending unwanted assets to your account.",
},
{
question: "How much does it cost to Opt into an Asset?",
answer:
"There is a Minimum Balance Requirement of 0.1A per Asset and it is locked up until you opt out of an asset.",
},
]}
/>
</div>
);
}

0 comments on commit d3007b8

Please sign in to comment.