how to solve the problem, any idea form anyone?
The problem lies in the import React, from { useState } 'react'.
import React, from { useState } 'react'
There is a typo here, since you are using useState you should import it like this:
useState
import React, { useState } from 'react';