JavaScript props nedir?

Props ‘lar , bir componentten başka bir componente veri aktarımı yapmamızı sağlar. Props ‘lar salt okunur (read-only) dir. Değiştirilemezler. Data; ana componentten alt componentlere geçerken alt componentler tarafından herhangi bir değişime uğramaz.19 Nis 2020

Read more

How does React manage state?

State management is simply a way to engender communication and sharing of data across components. It creates a concrete data structure to represent your app’s State that you can read and write . Since React 16.8, every React component, whether functional or class, can have a state.13 Nis 2021

Read more

What does 3 dots mean in React?

(three dots in JavaScript) is called the Spread Syntax or Spread Operator . This allows an iterable such as an array expression or string to be expanded or an object expression to be expanded wherever placed. This is not specific to React. It is a JavaScript operator.31 May 2017

Read more