Posted 23 March 2022, 6:43 pm EST
HI,
I would like to know if its possible to use a state variable as a dataSource and how to trigger the state update for any data modifications
const [workSheetDataSource, setWorkSheetDataSource] = useState(null);
return (
<Worksheet dataSource={workSheetDataSource}/>
)
