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 search for a Summoner. #1

Closed anthonyrodarte closed 6 years ago

anthonyrodarte commented 6 years ago

Wireframes

Before Search

screen shot 2018-04-23 at 3 25 26 pm

After Search screen shot 2018-04-26 at 11 26 59 am

Data Flow

screen shot 2018-04-23 at 3 25 39 pm

Fetched Data

{"id":39202711,"accountId":202145676,"name":"ObeseGoldfish","profileIconId":544,"revisionDate":1524465126000,"summonerLevel":51}

JS Data

const summoner = [
 {
  username: "ObeseGoldfish", 
  summonerLevel: "51", 
  iconID: "544", 
  id: 39202711
}
]

Component Hierarchy

<Summoner>
  <SummonerDetails/>
</Summoner>

Tasks