Changed naming from LinkList to EntryList

This commit is contained in:
Neshura 2022-12-10 03:00:40 +01:00
parent 39aaea05e5
commit 89a8278dbe
No known key found for this signature in database
GPG key ID: ACDF5B6EBECF6B0A

View file

@ -3,9 +3,9 @@ import Link from 'next/link'
import styles from '/styles/Home.module.css' import styles from '/styles/Home.module.css'
import fsPromises from 'fs/promises' import fsPromises from 'fs/promises'
import path from 'path' import path from 'path'
import type { CustomLink, LinkList } from '../interfaces/LinkTypes' import type { CustomLink, EntryList } from '../interfaces/LinkTypes'
function Servers(props: LinkList) { function Servers(props: EntryList) {
const serverList = props.games const serverList = props.games
return ( return (
<> <>