import { FC, Fragment } from "react"; import { Dialog, Transition } from "@headlessui/react"; import { Trash2, Plus, X } from "lucide-react"; // ui import { Input, Button } from "@plane/ui"; // types import { TViewOperations } from "../types"; type TViewCreateEditForm = { modalToggle: boolean; handleModalClose: () => void; viewOperations?: TViewOperations; }; export const ViewCreateEditForm: FC = (props) => { const { modalToggle, handleModalClose, viewOperations } = props; const createView = () => { viewOperations?.create({ name: "create" }); }; return (
Project Identifier
Create|Edit View
Filters
Clear all filters
Applied Filters with each dropdown
); };