Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact
Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact

Posts tagged with "react"

React useEffect Hooks

React useEffect Hooks

02 June 20233 min readWeb Programming

When it comes to using effects hook in React it allows us to perform side effect in function component. UseEffect lets you perform data fetching, updating the DOM directly, timers, and side effects such as state or variable changes in your components. useEffect is one of the most used hooks in react applications.

#React#useEffect Hook#Side Effects+3 more
Using useState Hook in React

Using useState Hook in React

03 May 20232 min readWeb Programming

useState is a React Hook that allows us to access state in function components. State refers to the data or properties that should be tracked in our project. useState allows us to use React's state property without writing a class. It has been included in the react library since v16.8 (in 2019). Before it was included in the react library...

#React#useState Hook#State Management+3 more
Happy New Year Welcome 2023

Happy New Year Welcome 2023

01 January 20232 min readReflections

Happy new year everyone. I hope your wishes come true in the new year. If you are a software developer, your education always continues. I'm currently developing myself on React. I hope I will be an expert react developer in the new year. I am in a great desire to learn given by my goals in the new year. Also, I am filled with an energy...

#New Year#Personal Growth#2023+3 more
Getting Requests From REST API With Fetch and Axios in React

Getting Requests From REST API With Fetch and Axios in React

11 December 20222 min readWeb Programming

Pulling data from the api with React is very important because we almost always use api requests in large projects. We can do this very easily with axios or fetch. I prefer axious which is easier to use. So what are we going to do here? We will make api request with...

#React#REST API#Axios+3 more
Previous123Next