Created
May 22, 2017 02:06
-
-
Save andrewmclagan/0f7a19ff24579df46670edfcf3dc83a4 to your computer and use it in GitHub Desktop.
React - Interview Question
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
window.__state = [ | |
{ name: 'Jaime Lannister', age: 42, avatar: '//api.adorable.io/avatars/134/[email protected]' }, | |
{ name: 'Cersei Lannister', age: 37, avatar: '//api.adorable.io/avatars/134/[email protected]' }, | |
{ name: 'Joanna Lannister', age: 16, avatar: '//api.adorable.io/avatars/134/[email protected]' }, | |
]; | |
// Create react component(s) to display a list of Lannister family members |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment