">

CSS Styles

This is my repo for all the CSS styles that I have used in my projects. On this place you can find all the CSS files and their corresponding styles.

Stack Used

This is temp code for testing.


const getPhoneSpecs = async (id) => {
  const response = await fetch(`api.phones.com/${id}`);
  const data = await response.json();
  
  if (data.status === "success") {
    console.log("Details found: ", data.model);
    return data.specs;
  }
};