mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-06-13 06:11:55 +00:00
24 lines
304 B
TypeScript
24 lines
304 B
TypeScript
import './App.css'
|
|
import { Link } from 'react-router-dom';
|
|
|
|
function App() {
|
|
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<h1>BarkMan</h1>
|
|
</div>
|
|
<p>
|
|
ARFF ARFF BARK BARK
|
|
</p>
|
|
|
|
<Link to="/inventory">
|
|
<button>Inventory</button>
|
|
</Link>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App
|