Skip to content

Instantly share code, notes, and snippets.

View vijayindalkar's full-sized avatar
🎯
Focusing

Vijay Indalkar vijayindalkar

🎯
Focusing
View GitHub Profile
### useEffect
<!--
function App() {
const [value, setValue] = useState(1);
return (
<div>
<button
onClick={function () {
@vijayindalkar
vijayindalkar / 1_Storage.sol
Created July 19, 2020 10:34
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.7.0;
/**
* @title Storage
* @dev Store & retreive value in a variable
*/
contract Storage {
uint256 number;