Guest User

Untitled

a guest
Nov 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. constructor() {
  2. super();
  3. this.state = {
  4. deityChoice: ['valkyrie', 'einjerhar', 'aesir'],
  5. deity: {} as Valkyrie | Aesir | Einherjar, // Instiate as an empty object - with type of Valkyrie, Aesir or Einherjar
  6. formValues: [],
  7. totalDeities: deities // Populate totalDeities with our sample data
  8. }
  9. }
Add Comment
Please, Sign In to add comment