()
| 2 | import config from '../../config.json'; |
| 3 | |
| 4 | export const getProjects = async () => { |
| 5 | const { data } = await axios.get( |
| 6 | `https://api.github.com/users/${config.social.github}/repos`, |
| 7 | ); |
| 8 | return data; |
| 9 | }; |
| 10 | |
| 11 | export const getReadme = async () => { |
| 12 | const { data } = await axios.get(config.readmeUrl); |