Skip to content

Commit 900970a

Browse files
committed
Update
1 parent 71e8492 commit 900970a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/App.jsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { useState } from 'react'
2-
import reactLogo from './assets/react.svg'
3-
import viteLogo from '/vite.svg'
4-
import './App.css'
1+
import { useState } from "react";
2+
import reactLogo from "./assets/react.svg";
3+
import viteLogo from "/vite.svg";
4+
import "./App.css";
55

66
function App() {
7-
const [count, setCount] = useState(0)
7+
const [count, setCount] = useState(0);
88

99
return (
1010
<>
@@ -16,7 +16,7 @@ function App() {
1616
<img src={reactLogo} className="logo react" alt="React logo" />
1717
</a>
1818
</div>
19-
<h1>Vite + React</h1>
19+
<h1>GCP Deployment</h1>
2020
<div className="card">
2121
<button onClick={() => setCount((count) => count + 1)}>
2222
count is {count}
@@ -29,7 +29,7 @@ function App() {
2929
Click on the Vite and React logos to learn more
3030
</p>
3131
</>
32-
)
32+
);
3333
}
3434

35-
export default App
35+
export default App;

0 commit comments

Comments
 (0)