12 lines
258 B
JavaScript

// app/add-item/page.js
export default function AddItemPage() {
return (
<div>
<h1>Add New Item</h1>
<p>This is where the form to add a new item will go.</p>
{/* You can add your form component or elements here */}
</div>
);
}