.
|-- src
| |-- common
| | |-- infra
| | | |-- httpService.js
| | |-- view
| | | |-- Button.js
| | | |-- Input.js
| |-- article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { combineReducers } from 'redux' | |
const authorsReducer = (state, action) => newState | |
const articlesReducer = (state, action) => newState | |
const rootReducer = combineReducers({ | |
authors: authorsReducer, | |
articles: articlesReducer, | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
articles: [ | |
{ | |
id: 1, | |
title: 'Managing all state in one reducer', | |
author: { | |
id: 1, | |
name: 'Iago Dahlem Lorensini', | |
email: '[email protected]' | |
}, |
.
|-- src
| |-- app
| | |-- user
| | | |-- CreateUser.js
| | |-- article
| | | |-- GetArticle.js
| |-- domain
| | |-- user
A Codeminer 42 é uma butique de software brasileira. Trabalhamos para startups e grandes empresas, temos diversos tipos de serviços que vão de ciclo de vida de desenvolvimento de projetos do zero a resgate de projetos.
Nossa especialidade é desenvolvimento web com Ruby on Rails e seu ecossistema satélite. Temos experiência em todos os tipos de produtos de tecnologia como e-commerces, e-learning, redes sociais, gerenciamento de conteúdo, automação de processos.
Nós começamos a operar em setembro de 2011 e já somos mais de 60 pessoas em 9 cidades brasileiras: São Paulo (HQ), Campinas, Novo Hamburgo, Natal, Sorocaba, Teresina, Anápolis, Goiânia e Batatais.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Elementary Setup and Tweaks - for Elementary OS Loki | |
# extra installations | |
sudo apt-get install software-properties-common -y | |
# clean up | |
sudo apt-get purge evolution-data-server -y | |
# elementary-tweaks | |
sudo add-apt-repository ppa:philip.scott/elementary-tweaks -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'declaration-block-properties-order': [ | |
{ | |
properties: [ | |
'position', | |
'z-index', | |
'top', | |
'right', | |
'bottom', | |
'left', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |