From 62c8d5b266a6ff03dd349b62ac139f8843741b6a Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Thu, 9 Jan 2025 16:53:37 -0600 Subject: [PATCH] Remove React logo and counter, update App title to 'BarkMan' The React logo and counter button were removed from the app. The main heading was updated to display 'BarkMan', simplifying the interface. Unused imports were also cleaned up. --- barkmanui/src/App.tsx | 24 ++++-------------------- barkmanui/src/assets/react.svg | 1 - 2 files changed, 4 insertions(+), 21 deletions(-) delete mode 100644 barkmanui/src/assets/react.svg diff --git a/barkmanui/src/App.tsx b/barkmanui/src/App.tsx index 3d7ded3..564af64 100644 --- a/barkmanui/src/App.tsx +++ b/barkmanui/src/App.tsx @@ -1,30 +1,14 @@ 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) + return ( <> -
- - Vite logo - - - React logo - -
-

Vite + React

-
- -

- Edit src/App.tsx and save to test HMR -

-
+ +

BarkMan

+

Click on the Vite and React logos to learn more

diff --git a/barkmanui/src/assets/react.svg b/barkmanui/src/assets/react.svg deleted file mode 100644 index 6c87de9..0000000 --- a/barkmanui/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file