React-router 4.x nested routes cannot be displayed

items are built using creat-react-app
I have configured Home and Account two child routes in index.js,

ReactDOM.render(
  <HashRouter>
    <Switch>
       <Route exact path="/home" component={Home} />
       <Route exact path="/account" component={Account} />
    </Switch>
  </HashRouter>,
document.getElementById("root"));

and http://localhost:8080/-sharp/home points to Home this route, and
I have three more sub-component routes in the Home component, and configure them as follows

//Home.js

<div className="home_main">
    <Switch>
       <Route exact path="/index" component={HomeIndex} />
       <Route path="/order" component={HomeOrder} />
       <Route path="/assets" component={Assets} />
    </Switch>
</div>
The problem with

now is that I enter http://localhost:8080/-sharp/home into the Home component, but I visit http://localhost:8080/-sharp/home/index to try to access HomeIndex this component, and the page is blank, as if I had visited a route that does not exist

how should nested routing be written correctly in v4 version?


remove < Route exact path= "/ home" component= {Home} / > exact this attribute
and then

// Home
<div className="home_main">
    <Switch>
       <Route exact path="/home/index" component={HomeIndex} />
       <Route path="/home/order" component={HomeOrder} />
       <Route path="/home/assets" component={Assets} />
    </Switch>
</div>

1. See the official document:
https://reacttraining.com/rea.
https://reacttraining.com/rea.

2,
simple points

<Switch>
    <Route
        path="/home"
        component={() => {
            return (
                <React.Fragment>
                   <Route exact path="/home" component={HomeIndex} />
                   <Route path="/order" component={HomeOrder} />
                   <Route path="/assets" component={Assets} />
                </React.Fragment>
            );
        }}
    />
</Switch>
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2b691-2ba77.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2b691-2ba77.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?