tscircuit / snippets

https://snippets.tscircuit.com
MIT License
3 stars 15 forks source link

Allow editing shipping information in profile #72

Closed seveibar closed 1 week ago

seveibar commented 1 week ago

Image

Form w/ placeholders

Update button to save changes

seveibar commented 1 week ago
const [form, setField] = useReducer((state, action) => {
  state[action.fieldName] = action.fieldValue
  return state
}, {})

<Input value={form.name} onChange={(fieldValue) => setField({ fieldName: "name", fieldValue }))