deploy react app in githubpages code example
Example 1: deploy react express to github pages
npm run deploy
Example 2: deploy react app to github
echo "# instagram-clone" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/CoderJakaria/instagram-clone.git
git push -u origin main