Created
August 7, 2025 06:54
-
-
Save librz/026a1807f1658b83c8482fdb8f5ee857 to your computer and use it in GitHub Desktop.
Mock data that I often used
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
export const fruitOptions = [ | |
{ | |
value: "apple", | |
label: "Apple π", | |
}, | |
{ | |
value: "grape", | |
label: "Grape π", | |
}, | |
{ | |
value: "orange", | |
label: "Orange π", | |
}, | |
{ | |
value: "blueberry", | |
label: "Blueberry π«", | |
}, | |
{ | |
value: "honeydew", | |
label: "Honeydew π", | |
}, | |
{ | |
value: "lemon", | |
label: "Lemon π", | |
}, | |
{ | |
value: "banana", | |
label: "Banana π", | |
}, | |
{ | |
value: "cherry", | |
label: "Cherry π", | |
}, | |
{ | |
value: "peach", | |
label: "Peach π", | |
}, | |
{ | |
value: "watermelon", | |
label: "Watermelon π", | |
}, | |
{ | |
value: "pineapple", | |
label: "Pineaple π", | |
}, | |
{ | |
value: "kiwi-fruit", | |
label: "Kiwi Fruit π₯", | |
}, | |
{ | |
value: "mango", | |
label: "Mango π₯", | |
}, | |
{ | |
value: "avocado", | |
label: "Avocado π₯", | |
}, | |
{ | |
value: "coconut", | |
label: "Coconut π₯₯", | |
}, | |
{ | |
value: "pear", | |
label: "Pear π", | |
}, | |
{ | |
value: "strawberry", | |
label: "Strawberry π", | |
}, | |
{ | |
value: "lime", | |
label: "Lime πβπ©", | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment