Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
379 views
in Technique[技术] by (71.8m points)

react router - Anchor link and Stand-Alone component in same navigation links

I have a Single-Page-App, and am linking to the different section via a HashRouter. Now I wanted to add another component that should render one a separate stand-alone page (keeping the navbar).

I have no idea how make this work. Have tried to wrap it in Switch, BrowserRouter... none of it works.

function App() {
  return (
    <div className="App">

        <HashRouter hashType='noslash'>
          <Navbar/>        
          <Hero/>      
          <About/>
          <Skills/>
          <Projects/>
          <Contact/>
          <Footer />

// Stand-alone component link here? //

        </HashRouter>

//or here? //
   
    </div>
  );
}

export default App;
question from:https://stackoverflow.com/questions/65938004/anchor-link-and-stand-alone-component-in-same-navigation-links

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...