You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# useRef
Herhangi bir elemanımıza ref verdiğimiz zaman, **useRef** hook una elemanın tipini belirtmeliyiz. Ayrıca **initialValue** değerini de vermeliyiz. React projelerimizi JavaScript ile yazdığımızda **initialValue** değerini boş bıraktığımızda hata almıyorduk fakat TypeScript hata vericektir.
```typescript
const inputRef = useRef(null);
```