Skip to content

Commit

Permalink
Fix lint errors for src/index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
zeon-neon[bot] authored May 14, 2024
1 parent f173376 commit ffd49e8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import "animate.css/animate.compat.css"
import Background from './background.js'
const root = ReactDOM.createRoot(document.getElementById('root'));
import React from 'react'
import ReactDOM from 'react-dom/client'
import './index.css'
import App from './App'
import reportWebVitals from './reportWebVitals'
import 'animate.css/animate.compat.css'
import Background from './background.js'
const root = ReactDOM.createRoot(document.getElementById('root'))
root.render(
<div>
<Background />
<App />
<App />
</div>
);
)

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
reportWebVitals()

0 comments on commit ffd49e8

Please sign in to comment.