mwkwsd / sensensomething

3 stars 0 forks source link

React Routing #15

Closed mwilkins74 closed 8 months ago

mwilkins74 commented 8 months ago

Setup Routing to navigate to:

<Route path="/" element={<Home />} />
<Route path="contact" element={<Contact />} />
<Route path="videoListPage" element={<VideoListPage />} />
<Route path="series" element={<SeriesPage />} />
<Route path="animation" element={<AnimationPage />} />

Verified visiting these routes renders the components, which I just added as Organisms, for now, to verify functionality (import Contact from "./components/organisms/Contact";)