Skip to content

Commit

Permalink
Merge pull request #243 from FACT-Finder/renovate/all-lock
Browse files Browse the repository at this point in the history
Lock file maintenance
  • Loading branch information
ArLau authored Sep 8, 2023
2 parents cd1996e + 0db5150 commit 6d6537b
Show file tree
Hide file tree
Showing 2 changed files with 1,273 additions and 1,296 deletions.
8 changes: 4 additions & 4 deletions packages/ui/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import ReactDOM from 'react-dom';
import {createRoot} from 'react-dom/client';
import 'github-markdown-css/github-markdown-light.css';
import './index.css';
import App from './App';
Expand All @@ -8,11 +8,11 @@ import {createTheme} from '@mui/material/styles';

const theme = createTheme();

ReactDOM.render(
const root = createRoot(document.getElementById('root')!);
root.render(
<React.StrictMode>
<ThemeProvider theme={theme}>
<App />
</ThemeProvider>
</React.StrictMode>,
document.getElementById('root')
</React.StrictMode>
);
Loading

0 comments on commit 6d6537b

Please sign in to comment.