eslint auto fixes

This commit is contained in:
SpikeHD
2022-05-08 16:49:26 -07:00
parent 725bc1a994
commit e700cb17ce
6 changed files with 32 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import logo from './logo.svg';
import './App.css';
import React from 'react'
import logo from './logo.svg'
import './App.css'
// Major Components
import Topbar from './components/TopBar'
@@ -9,9 +9,9 @@ function App() {
return (
<div className="App">
<Topbar />
<button onClick={() => console.log("cum")}>Cool button</button>
<button onClick={() => console.log('cum')}>Cool button</button>
</div>
);
)
}
export default App;
export default App