I am creating a travel site.
I need a select box with options for 'number of children'. i.e. 1,2,3
- If the user selects 1, then I need one extra react-select element to appear below for the user to select the age of the child (1,2,3,4,5,6,7,8,9,10,11,12)
- If the user selects 2, then I need two extra react-select elements to appear below for the user to select the age of the children (1,2,3,4,5,6,7,8,9,10,11,12)
- If the user selects 3, then I need three extra react-select elements to appear below for the user to select the age of the children (1,2,3,4,5,6,7,8,9,10,11,12)
Any idea how to do this? Thanks