A react app that leverages Unsplash's API to find you images that you are looking for!
Ensure that you have registered for an Unsplash API and include it in this format
import axios from "axios";
export default axios.create({
baseURL: "https://api.unsplash.com",
headers: {
Authorization: "Client-ID 0xExample",
},
});