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
<html> | |
<header> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> | |
</header> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-3 col-md-4 col-sm-6"> | |
One of three columns |
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
/* eslint-disable react-hooks/exhaustive-deps */ | |
import React, { useState, useEffect } from 'react'; | |
import { useRouter } from 'next/router'; | |
import { Loader } from 'semantic-ui-react'; | |
import { size } from 'lodash'; | |
import BasicLayout from '../../layouts/BasicLayout'; | |
import { getPlatformApi } from '../../api/platform'; | |
import { getGamesPlatformApi, getTotalGamesPlatformApi } from '../../api/game'; | |
import Games from '../../components/Games'; | |
import Pagination from '../../components/Pagination'; |