Skip to content

Instantly share code, notes, and snippets.

View arpit3210's full-sized avatar
🎯
Focusing

Arpit Singh arpit3210

🎯
Focusing
View GitHub Profile
import React, { useState } from 'react';
import './App.css';
const App = () => {
const [name, setName] = useState('MyToken');
const [symbol, setSymbol] = useState('MTK');
const [supply, setSupply] = useState('1000000');
const [transactionHash, setTransactionHash] = useState('');
const [isSuccessful, setIsSuccessful] = useState(null);