'React form data un-clickable uneditable

My form data in react is not clickable and uneditable. The cursor don't even show up when I click the text form.

enter image description here

Can someone please kindly help me with this problem?

I doubt that the problem is because my hash router:

import { HashRouter as Router,Route,Switch } from 'react-router-dom'

        <Router>
          <Header />
          <Switch>
            <Route path="/blog" component = {BlogScreen}/>
            <Route  path="/" component = {MainScreen} />
          </Switch>
          <Footer />
        </Router> 

The button in my main router "/" is work, but all form data in my "/blog" is disable.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source