Skip to content

Commit

Permalink
Add Router component
Browse files Browse the repository at this point in the history
  • Loading branch information
Frodigo committed Dec 12, 2021
1 parent 96843a7 commit cdd0fbc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { BrowserRouter } from "react-router-dom";
import App from './App';
import 'bootstrap/dist/css/bootstrap.min.css';

ReactDOM.render(
<App />,
<BrowserRouter>
<App />
</BrowserRouter>,
document.getElementById('root')
);
);

0 comments on commit cdd0fbc

Please sign in to comment.