When calling a component, I pass a string like this:
<TripsPage
startingPoint={startingPoint}
/>
Within this component, there is a label:
<Item fixedLabel>
<Input/>
</Item>
Upon opening the screen on the front-end, it is initially empty. However, I would like the startingPoint
string to be displayed as the default input value. Is this achievable?