Skip to content

Commit

Permalink
Adds route to framework overview (framework-overview)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andir16 committed Mar 17, 2024
1 parent e915dde commit 32005ee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import ReactDOM from 'react-dom/client';
import './sass/main.scss';
import App from './App';
import Framework from './partials/framework';
import FrameworkOverview from './partials/framework-overview';
import reportWebVitals from './reportWebVitals';

const root = ReactDOM.createRoot(document.getElementById('root'));
Expand All @@ -13,6 +14,7 @@ root.render(
<Routes>
<Route path="/" element={<App />} />
<Route path="/:framework/:component?" element={<Framework />} />
<Route path="/framework-overview" element={<FrameworkOverview />} />
</Routes>
</BrowserRouter>
</React.StrictMode>
Expand Down

0 comments on commit 32005ee

Please sign in to comment.