Sharaxaad
React wuxuu ka dhisaa UIs components dib loo isticmaali karo oo leh props, state, effects, iyo composition.
Tusaale code
tsximport { useState } from "react";
export function Counter() {
const [count, setCount] = useState(0);
return (
<button type="button" onClick={() => setCount((value) => value + 1)}>
Clicked {count} times
</button>
);
}Agab waxtar leh
Layli
Dhis React dashboard xirfado oo leh filtered lists, controlled inputs, iyo local state.
