Skip to content

Commit

Permalink
eee
Browse files Browse the repository at this point in the history
  • Loading branch information
lkatsikaris committed Apr 16, 2024
1 parent ec4c425 commit 72ef25b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ import './index.scss';

subscribe(APP_READY, () => {
ReactDOM.render(<React.StrictMode>
<AppProvider>
<Header />
<ExamplePage />
<Footer />
</AppProvider>
</React.StrictMode>, document.getElementById('root'))});
<AppProvider>
<Header />
<ExamplePage />
<Footer />
</AppProvider>
</React.StrictMode>, document.getElementById('root'))

Check failure on line 25 in src/index.jsx

View workflow job for this annotation

GitHub Actions / test

Expected closing tag to match indentation of opening

Check failure on line 25 in src/index.jsx

View workflow job for this annotation

GitHub Actions / test

Missing semicolon
});

subscribe(APP_INIT_ERROR, (error) => {
ReactDOM.render(<ErrorPage message={error.message} />, document.getElementById('root'));
Expand Down

0 comments on commit 72ef25b

Please sign in to comment.