const [inputs, setInputs] = createStore<Record<string, string>>({})
const updateInput = (column_id: string, value: string) => {
setInputs({ [column_id]: value })
}
const resetInputs = () => {
// ..?
}
const [inputs, setInputs] = createStore<Record<string, string>>({})
const updateInput = (column_id: string, value: string) => {
setInputs({ [column_id]: value })
}
const resetInputs = () => {
// ..?
}