Skip to content

Instantly share code, notes, and snippets.

View hoseinhamzei's full-sized avatar
😉
Never Stop Learning

Mohamad Hosein Hamzenejad hoseinhamzei

😉
Never Stop Learning
View GitHub Profile
@hoseinhamzei
hoseinhamzei / counter.js
Created March 24, 2019 07:13
Counter component with react hooks
import React,{useState} from 'react';
// create a stateless component
function Counter(){
// count state with usestate hook and setCount method
const [count, setCount] = useState(0);
// render component
return(
@hoseinhamzei
hoseinhamzei / traveler.svg
Created August 12, 2018 13:54
car live bg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hoseinhamzei
hoseinhamzei / index.html
Created July 7, 2018 14:40
SIMPLE PIG GAME
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,600" rel="stylesheet" type="text/css">
<link href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css">
<link type="text/css" rel="stylesheet" href="style.css">
<title>Pig Game</title>
</head>