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 { useState } from "react";
|
||||||
import reactLogo from './assets/react.svg'
|
import reactLogo from "./assets/react.svg";
|
||||||
import viteLogo from '/vite.svg'
|
import viteLogo from "/vite.svg";
|
||||||
import './App.css'
|
import "./App.css";
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
const [count, setCount] = useState(0)
|
const [count, setCount] = useState(0);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -19,7 +19,7 @@ function App() {
|
||||||
<h1>Vite + React</h1>
|
<h1>Vite + React</h1>
|
||||||
<div className="card">
|
<div className="card">
|
||||||
<button onClick={() => setCount((count) => count + 1)}>
|
<button onClick={() => setCount((count) => count + 1)}>
|
||||||
count is {count}, also hello world!
|
count is {count}
|
||||||
</button>
|
</button>
|
||||||
<p>
|
<p>
|
||||||
Edit <code>src/App.tsx</code> and save to test HMR
|
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
|
Click on the Vite and React logos to learn more
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App
|
export default App;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue