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
# Git Aliases | |
### Adding Changes | |
- `g`: `git` | |
- `ga`: `git add` | |
- `gaa`: `git add --all` | |
- `gapa`: `git add --patch` | |
- `gau`: `git add --update` | |
- `gav`: `git add --verbose` |
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 React from 'react' | |
import PropTypes from 'prop-types' | |
const TYPES = { | |
OITO: '9999-9999', | |
NOVE: '99999-9999', | |
SNOVE: '9 9999-9999', | |
DDDOITO: '(99)9999-9999', |
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
module.exports = (plop) => { | |
plop.setGenerator('component', { | |
description: 'Create a component', | |
prompts: [ | |
{ | |
type: 'input', | |
name: 'name', | |
message: 'What is your component name?' | |
} | |
], |