midorimici/fairy-chess-online

View on GitHub
dummies/games.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export const games: Game[] = [
  {
    slug: 'first-game',
    name: 'First game',
    description:
      'Game desciption. This part may contains the description about the game or/and pieces used in the game.',
    initialBoardImage: {
      url: 'https://media.graphassets.com/zzxpvUPeT1yHQAO8vSrI',
      width: 256,
      height: 256,
    },
  },
  {
    slug: 'second-game',
    name: 'Second game',
    description:
      'Game desciption. This part may contains the description about the game or/and pieces used in the game.',
    initialBoardImage: {
      url: 'https://media.graphassets.com/zzxpvUPeT1yHQAO8vSrI',
      width: 256,
      height: 256,
    },
  },
];