Skip to content

Commit

Permalink
Code formatting according to the new eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Nov 13, 2023
1 parent 4b7ac3f commit e3c2fd3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions dapp/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from "react"

function App() {
return <h1>Acre dApp</h1>;
return <h1>Acre dApp</h1>
}

export default App;
export default App
10 changes: 5 additions & 5 deletions dapp/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
import React from "react"
import ReactDOM from "react-dom/client"
import App from "./App"

ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);
</React.StrictMode>,
)

0 comments on commit e3c2fd3

Please sign in to comment.