I have a project with more components and I have a table with that appears by clicking on a button, I make some selections and make the table to disappear and reappear but I doesn't keep the selected values.
Can I make the "form.control" to keep my selected item ?
Here is the code from the table.
<Table>
<thead>
<tr>
<th>Name</th>
<th>Provide or not</th>
<th>Link where to find it</th>
</tr>
</thead>
<tbody>
<tr>
<td>HASI</td>
<td>
<Form.Control as="select">
<option>Provided_by_prj</option>
<option>Use_internal</option>
</Form.Control>
</td>
<td><FormControl aria-label="Small" aria-describedby="inputGroup-sizing-sm" /></td>
</tr>