Skip to content

Instantly share code, notes, and snippets.

View luandevpro's full-sized avatar

Luận Trần luandevpro

View GitHub Profile
@luandevpro
luandevpro / Input.js
Last active March 27, 2018 04:56
React
import React, { Component } from 'react';
class Input extends Component {
constructor() {
super();
this.state = {
fullName: ''
}
}
handleFullNameChange = (e) => {
....
handleFullNameChange = (e) => {
this.setState({
fullName: e.target.value
})
}
....
import React, { Component } from 'react';
class Input extends Component {
constructor() {
super();
this.state = {
fullName: '',
status: false
}
}
sudo apt-get install git
git config --global user.name "coder9s"
git config --global user.email "contact@luandevpro.info"
git remote rm origin
git remote add origin https://github.com/your_user/your_app.git
cat ~/.gitconfig
@luandevpro
luandevpro / Terminal
Last active March 30, 2018 14:23
Git
git init
git status
git commit -m "Hoc Git co ban"