remove hello world to test pipeline
All checks were successful
Publish Docker (docker cache) / Push Docker image to Docker Hub (push) Successful in 28s

This commit is contained in:
Fedor Katurov 2024-08-19 11:05:08 +07:00
parent 5df08b2496
commit 9518ac7016

View file

@ -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;