From 9518ac701692f66aa1549765e2c1bdf495ab03d5 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Mon, 19 Aug 2024 11:05:08 +0700 Subject: [PATCH] remove hello world to test pipeline --- src/App.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index bf924fd..52ea980 100644 --- a/src/App.tsx +++ b/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() {

Vite + React

Edit src/App.tsx and save to test HMR @@ -29,7 +29,7 @@ function App() { Click on the Vite and React logos to learn more

- ) + ); } -export default App +export default App;