export const listOfFruits: Array<{ name: string; description: string }> = [ { name: 'Apple', description: 'A sweet, edible fruit produced by an apple tree.' }, { name: 'Banana', description: 'An elongated, edible fruit produced by several kinds of large herbaceous flowering plants.', }, { name: 'Cherry', description: 'A small, round stone fruit that is typically bright or dark red.' }, { name: 'Date', description: 'The fruit of the date palm, a tree native to Northern Africa and the Middle East.' }, { name: 'Elderberry', description: 'A fruit of the elder tree, used in wines, syrups, and jams.' }, ]; export const listOfVegetables: Array<{ name: string; description: string }> = [ { name: 'Carrot', description: 'A root vegetable, usually orange in color, though purple, black, red, white, and yellow varieties exist.', }, { name: 'Broccoli', description: 'An edible green plant in the cabbage family whose large flowering head is eaten as a vegetable.', }, { name: 'Spinach', description: 'A leafy green flowering plant native to central and western Asia.' }, { name: 'Potato', description: 'A starchy plant tuber which is one of the most important food crops, cooked and eaten as a vegetable.', }, { name: 'Tomato', description: 'An edible, often red, berry of the plant Solanum lycopersicum, commonly known as a tomato plant.', }, ];