Skip to content

Instantly share code, notes, and snippets.

View gustavocardoso's full-sized avatar
💭
Fora Bolsonaro!!!

Gustavo Cardoso gustavocardoso

💭
Fora Bolsonaro!!!
View GitHub Profile
@gustavocardoso
gustavocardoso / .bash_profile
Created December 15, 2019 19:56
Bash profile
export ANDROID_HOME=~/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/platform-tools
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/gus/.oh-my-zsh"
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
import React from 'react'
import { connect } from 'react-redux'
import { increment, decrement } from './actions'
export const Counter = ({counter, increment, decrement}) => {
return (
<div>
<p className='counter'>Counter: {counter}</p>
<button className='increment' onClick={() => increment(10)}>+</button>