.
|-- src
| |-- common
| | |-- infra
| | | |-- httpService.js
| | |-- view
| | | |-- Button.js
| | | |-- Input.js
| |-- article
This file contains hidden or 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 hidden or 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
This file contains hidden or 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 hidden or 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 hidden or 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 # |
This file contains hidden or 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
# EditorConfig helps developers define and maintain consistent | |
# coding styles between different editors and IDEs | |
# http://editorconfig.org | |
# top-most EditorConfig file | |
root = true | |
# All types | |
[*] | |
charset = utf-8 |