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
function gap() { | |
if [ $# -eq 0 ]; then | |
echo Error: Please add a commit message | |
else | |
git add . | |
git commit -am "$*" | |
git push | |
fi | |
} |
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
/* | |
* ------------------- | |
* React Chat Scaffold | |
* ------------------- | |
*/ | |
import React from 'react' | |
import xhttp from 'xhttp' | |
/* | |
* Individual message component |