리액트가 업데이트를 바라보는 관점

업데이트는 모두 다 같은 종류의 업데이트라고 할 수 있는가?

const SearchApp = () => {
	const [text, setText] = useState('');

	return (
		<>
			<input onChange={(...) => setText(...)} />
			<AsyncAutoComplete target={text} />
		</>
	)
}