Este guia foi feito para quem nunca usou o terminal antes. Siga os passos com calma.
Escolha a ferramenta que preferir:
Este guia foi feito para quem nunca usou o terminal antes. Siga os passos com calma.
Escolha a ferramenta que preferir:
| @font-face { | |
| font-family: SegoeUI; | |
| src: | |
| local("Segoe UI Light"), | |
| url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"), | |
| url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"), | |
| url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype"); | |
| font-weight: 100; | |
| } |
| import { createStore, combineReducers } from 'redux'; | |
| import rootReducer from '../reducers'; | |
| const store = createStore(rootReducer); | |
| export default store; |
| import { combineReducers } from 'redux'; | |
| import myReducer from './myReducer'; | |
| const rootReducer = combineReducers({ myReducer }); | |
| export default rootReducer; |
| const INITIAL_STATE = { | |
| state: '', | |
| }; | |
| function myReducer(state = INITIAL_STATE, action) { | |
| switch (action.type) { | |
| case 'NEW_ACTION': | |
| return { state: action.state }; | |
| default: | |
| return state; |
| #!/usr/bin/env bash | |
| ##### | |
| # Script to install postfix | |
| ##### | |
| DOMAIN="example.com" | |
| EMAIL="haisum@example.com" | |
| PASSWORD="example.com1*" |