mirror of
https://github.com/He4eT/elseifplayer.git
synced 2026-05-05 01:17:22 +00:00
Linting
This commit is contained in:
parent
3288234f36
commit
7a96d99055
21 changed files with 174 additions and 170 deletions
|
|
@ -11,10 +11,10 @@ import './GamesView.css'
|
|||
const tutorialGame = {
|
||||
name: 'The Dreamhold',
|
||||
ifdb: 'https://ifdb.org/viewgame?id=3myqnrs64nbtwdaz',
|
||||
url: 'https://mirror.ifarchive.org/if-archive/games/zcode/dreamhold.z8'
|
||||
url: 'https://mirror.ifarchive.org/if-archive/games/zcode/dreamhold.z8',
|
||||
}
|
||||
|
||||
export default function () {
|
||||
export default function GamesView () {
|
||||
return (
|
||||
<main className='view games'>
|
||||
|
||||
|
|
@ -46,7 +46,7 @@ export default function () {
|
|||
<ul>
|
||||
<li>
|
||||
<GameEntry {...{
|
||||
...tutorialGame
|
||||
...tutorialGame,
|
||||
}} />
|
||||
</li>
|
||||
</ul>
|
||||
|
|
@ -73,10 +73,10 @@ export default function () {
|
|||
</p>
|
||||
|
||||
<ol>
|
||||
{top2019.map(game => (
|
||||
{top2019.map((game) => (
|
||||
<li key={game[0]}>
|
||||
<GameEntry {...{
|
||||
...game
|
||||
...game,
|
||||
}} />
|
||||
</li>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue