This commit is contained in:
2025-01-09 18:04:00 -06:00
parent 62c8d5b266
commit 1ebbb16677
4 changed files with 100 additions and 7 deletions
+9 -5
View File
@@ -1,17 +1,21 @@
import { useState } from 'react'
import './App.css'
import { Link } from 'react-router-dom';
function App() {
return (
<>
<div>
<h1>BarkMan</h1>
<p className="read-the-docs">
Click on the Vite and React logos to learn more
</div>
<p>
ARFF ARFF BARK BARK
</p>
<Link to="/inventory">
<button>Inventory</button>
</Link>
</>
)
}