This commit is contained in:
He4eT 2023-05-21 16:46:30 +03:00 committed by Alexey
commit 7a96d99055
21 changed files with 174 additions and 170 deletions

View file

@ -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>
))}