We are going to create a pr. You need to know basic git and github commands to make a pr for this.
Click on fork in the top left corner of your screen. Clone the repo you have been redirected to
git clone url_redirected_to
If you use yarn then run
yarn install # for yarn
npm install # for npm
git checkout -b new-feature
yarn dev # for yarn
npm run dev # for npm
This project is licensed under the MIT License - see the LICENSE
file for details.
Pushing the code to Github
git add .
git commit -m "commit message (what you added)"
git push origin new-feature
After pushing the code go to your repository go to your repository and make a pull request.
You have created your pull request, I will review it soon