import React from "react"; import { Button, Card, Field, Input, Stack } from "@chakra-ui/react"; import { createItem } from "@/utils/userActions"; type AddItemFormProps = { onClose: () => void; alert: ( status: "success" | "error", message: string, description: string ) => void; }; const AddItemForm: React.FC = ({ onClose, alert }) => { return (
Neuen Gegenstand erstellen Füllen Sie das folgende Formular aus, um einen Gegenstand zu erstellen. Gegenstandsname Ausleih-Berechtigung (Rolle)
); }; export default AddItemForm;