mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-06-13 06:11:55 +00:00
20 lines
258 B
TypeScript
20 lines
258 B
TypeScript
import '../App.css'
|
|
|
|
function Inventory() {
|
|
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<h1>Inventory</h1>
|
|
</div>
|
|
<p>
|
|
ARFF ARFF BARK BARK
|
|
</p>
|
|
|
|
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Inventory |