anthonyrodarte / LoL-Stats

A web application for Summoners who want to view League of Legends statistics.
0 stars 0 forks source link

A user can view summoner details. #5

Closed anthonyrodarte closed 6 years ago

anthonyrodarte commented 6 years ago

Wireframe

screen shot 2018-05-01 at 1 29 15 pm

Fetched Data

{
    "matches": [
  {
            "lane": "MID",
            "gameId": 2751023682,
            "champion": 105,
            "platformId": "NA1",
            "timestamp": 1522373330674,
            "queue": 420,
            "role": "SOLO",
            "season": 11
        } 
  ],
    "endIndex": 20,
    "startIndex": 0,
    "totalGames": 178
}

JS Data

const matches = [
 {
  lane: "MID",
  game: 2751023682,
  champion: 105,
  platformId: "NA1",
  timestamp: 1522373330674,
  queue: 420,
  role: "SOLO",
  season: 11
}
]

Tasks

Refactor

anthonyrodarte commented 6 years ago

Reopening to add better styling. Will stray from wireframe a bit.