remove hello world to test pipeline
All checks were successful
Publish Docker (docker cache) / Push Docker image to Docker Hub (push) Successful in 28s
All checks were successful
Publish Docker (docker cache) / Push Docker image to Docker Hub (push) Successful in 28s
This commit is contained in:
parent
5df08b2496
commit
9518ac7016
1 changed files with 8 additions and 8 deletions
16
src/App.tsx
16
src/App.tsx
|
@ -1,10 +1,10 @@
|
|||
import { useState } from 'react'
|
||||
import reactLogo from './assets/react.svg'
|
||||
import viteLogo from '/vite.svg'
|
||||
import './App.css'
|
||||
import { useState } from "react";
|
||||
import reactLogo from "./assets/react.svg";
|
||||
import viteLogo from "/vite.svg";
|
||||
import "./App.css";
|
||||
|
||||
function App() {
|
||||
const [count, setCount] = useState(0)
|
||||
const [count, setCount] = useState(0);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
@ -19,7 +19,7 @@ function App() {
|
|||
<h1>Vite + React</h1>
|
||||
<div className="card">
|
||||
<button onClick={() => setCount((count) => count + 1)}>
|
||||
count is {count}, also hello world!
|
||||
count is {count}
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>src/App.tsx</code> and save to test HMR
|
||||
|
@ -29,7 +29,7 @@ function App() {
|
|||
Click on the Vite and React logos to learn more
|
||||
</p>
|
||||
</>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
export default App
|
||||
export default App;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue