Last active
November 19, 2018 12:53
-
-
Save SCasarotto/2fb6dc2e4476bc440ea05ca266ef7892 to your computer and use it in GitHub Desktop.
This file contains 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
export const albums = [ | |
{ albumName: "Showbiz", albumId: "album1" }, | |
{ albumName: "Origin of Symmetry", albumId: "album2" }, | |
{ albumName: "Absolution", albumId: "album3" }, | |
{ albumName: "Black Holes And Revelations", albumId: "album4" }, | |
{ albumName: "The Resistance", albumId: "album5" }, | |
{ albumName: "The 2nd Law ", albumId: "album6" }, | |
{ albumName: "Drones", albumId: "album7" }, | |
{ albumName: "Simulation Theory", albumId: "album8" } | |
] | |
export const fields = [ | |
{ | |
fieldName: "What is the general message of the album?", | |
fieldId: "field1", | |
fieldType: "text" | |
}, | |
{ | |
fieldName: "What track stands out?", | |
fieldId: "field2", | |
fieldType: "text" | |
}, | |
{ | |
fieldName: "What track pull the album down?", | |
fieldId: "field3", | |
fieldType: "text" | |
}, | |
{ | |
fieldName: "How is the band evolving in this album?", | |
fieldId: "field4", | |
fieldType: "text" | |
}, | |
{ | |
fieldName: "How does this compare to their other albums?", | |
fieldId: "field5", | |
fieldType: "text" | |
}, | |
{ | |
fieldName: "What other bands or albums does this album remind you of?", | |
fieldId: "field6", | |
fieldType: "text" | |
}, | |
{ | |
fieldName: "Overall Rating", | |
fieldId: "field7", | |
fieldType: "radio", | |
fieldOptions: ["1", "2", "3", "4", "5"] | |
}, | |
{ | |
fieldName: "Final Notes", | |
fieldId: "field8", | |
fieldType: "textarea" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment