17th January, 2023
In the previous guide I showed how to make a compound input for a person’s first and last name. Suppose that we now want to show this input for a variable number of people, how should that be done?
Read More >
17th January, 2023
Form inputs often have separate fields that belong together, for example the “name” field may be decomposed into “first name” and “last name”. This guide shows you how to bundle multiple fields into a single component. The objective is to have the input’s value represented as an object:
{
"firstName": "First name value",
"lastName": "Last name value",
}
Read More >