See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import { Modal } from "antd"; | |
| import axios from "axios"; | |
| import jwt_decode from "jwt-decode"; | |
| axios.defaults.baseURL = process.env.REACT_APP_BASE_YOUR_URL; | |
| export const axiosConfig = axios.create(); | |
| function getTokens() { |
| /* | |
| (c) by Thomas Konings | |
| Random Name Generator for Javascript | |
| */ | |
| function capFirst(string) { | |
| return string.charAt(0).toUpperCase() + string.slice(1); | |
| } | |
| function getRandomInt(min, max) { |