View gist:c34bc386b9e3a603d29ef4890018027d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
import styles from '../styles/Home.module.css'; | |
import React, { useState, useEffect } from 'react'; | |
import useSWR from 'swr' | |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' | |
import { faHeart, faHeartBroken } from '@fortawesome/free-solid-svg-icons' | |
// Separate all fetches because render hooks has an issue with rendering | |
// hooks a different amount of times in the same component |