source: frontend/src/utils/consts.ts@ 947fcaa

main
Last change on this file since 947fcaa was 27660af, checked in by Filip Gavrilovski <filipgavrilovski28@…>, 5 months ago

update form for publishing music - replace mock search with api calls

  • Property mode set to 100644
File size: 567 bytes
Line 
1export const ROLE_OPTIONS = [
2 { value: "FEATURED", label: "Featured" },
3 { value: "PRODUCER", label: "Producer" },
4 { value: "SONGWRITER", label: "Songwriter" },
5 { value: "COMPOSER", label: "Composer" },
6 { value: "MIXER", label: "Mixer" },
7 { value: "ENGINEER", label: "Engineer" },
8];
9
10export const GENRE_OPTIONS = [
11 "Pop",
12 "Rock",
13 "Hip-Hop",
14 "R&B",
15 "Electronic",
16 "Jazz",
17 "Classical",
18 "Country",
19 "Folk",
20 "Latin",
21 "Metal",
22 "Punk",
23 "Indie",
24 "Alternative",
25 "Blues",
26 "Soul",
27 "Reggae",
28 "Funk",
29 "Disco",
30 "House",
31 "Techno",
32 "Ambient",
33 "Other",
34];
Note: See TracBrowser for help on using the repository browser.