Well Come to my Painting Shop!!!

Name : Jacklyn Ashley

Price : 31

Name : Lenora Lucas

Price : 142

Name : Yvonne Guy

Price : 184

Name : Malinda Rogers

Price : 65

Name : Agnes Norris

Price : 331

Name : Britney Lowe

Price : 323

Name : Jeanie Preston

Price : 52

Name : Burnett Blankenship

Price : 56

Name : Buck Norman

Price : 34

Selected Painting

How React work?
# Answer-1
React is a javascript library.We are use react in web development. It has a virtual Dom which is compares the components previous states. We also know that react is component base libary.React offers some outstanding features that make it the most widely adopted library for frontend app development. We can write HTML structures in the same file as JavaScript code by utilizing JSX and Hooks are the new feature. If you write a function component, and then you want to add some state to it, previously you do this by converting it to a class. But, now you can do it by using a Hook inside the existing function component.
How useSate work?
# Answer-2
We know that useState is a reactjs's Hook.The useState function is a built in hook that can be imported from the react package. It allows to add state to functional components. It's Returns a stateful value, and a function to update it. With useState you can easily create stateful functional components. We can only use useState inside a function component.