import React from "react"; import { Button, Card, Field, Input, Stack } from "@chakra-ui/react"; import { createUser } from "@/utils/userActions"; type AddFormProps = { onClose: () => void; alert: ( status: "success" | "error", message: string, description: string ) => void; }; const AddForm: React.FC = ({ onClose, alert }) => { return (
Neuen Nutzer erstellen Füllen Sie das folgende Formular aus, um einen Nutzer zu erstellen. Username Password Role
); }; export default AddForm;