-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(browser-extension): open preferences by default. closes #100
- Loading branch information
1 parent
6f4e950
commit 126a1ca
Showing
2 changed files
with
38 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import ReactDOM from 'react-dom'; | ||
import { BrowserRouter as Router } from 'react-router-dom'; | ||
import { App } from './ui-components/pages/App'; | ||
|
||
const app = document.getElementById('app'); | ||
ReactDOM.render(<App />, app); | ||
ReactDOM.render( | ||
<Router> | ||
<App /> | ||
</Router>, | ||
app | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters