Skip to content

Commit

Permalink
der
Browse files Browse the repository at this point in the history
  • Loading branch information
lkatsikaris committed Apr 16, 2024
1 parent ac2f857 commit ec4c425
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react";
import React from 'react';
import ReactDOM from 'react-dom';
import 'core-js/stable';
import 'regenerator-runtime/runtime';
Expand All @@ -16,15 +16,13 @@ import ExamplePage from './example/ExamplePage';
import './index.scss';

subscribe(APP_READY, () => {
ReactDOM.render(
<React.StrictMode>
ReactDOM.render(<React.StrictMode>
<AppProvider>

Check failure on line 20 in src/index.jsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 4 space characters but found 6
<Header />
<ExamplePage />
{/* <Footer /> */}
<Footer />
</AppProvider>
</React.StrictMode>, document.getElementById("root"))
});
</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

Expected indentation of 2 space characters but found 4

Check failure on line 25 in src/index.jsx

View workflow job for this annotation

GitHub Actions / test

Requires a space before '}'

Check failure on line 25 in src/index.jsx

View workflow job for this annotation

GitHub Actions / test

Closing curly brace should be on the same line as opening curly brace or on the line after the previous block

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 ec4c425

Please sign in to comment.