tabComponent type added
This commit is contained in:
parent
f38e84fc4e
commit
8972c0e3ec
1 changed files with 3 additions and 1 deletions
|
|
@ -2,10 +2,11 @@ import { ArrowDownTrayIcon } from "@heroicons/react/24/outline";
|
|||
import { PlusIcon, XMarkIcon } from "@heroicons/react/24/solid";
|
||||
import { useContext, useRef, useState } from "react";
|
||||
import { TabsContext } from "../../../../contexts/tabsContext";
|
||||
import { FlowType } from "../../../../types/flow";
|
||||
|
||||
var _ = require("lodash");
|
||||
|
||||
export default function TabComponent({ selected, flow, onClick }) {
|
||||
export default function TabComponent({ selected, flow, onClick }:{flow:FlowType,selected:boolean,onClick:()=>void}) {
|
||||
const { removeFlow, updateFlow, flows } =
|
||||
useContext(TabsContext);
|
||||
const [isRename, setIsRename] = useState(false);
|
||||
|
|
@ -88,3 +89,4 @@ export default function TabComponent({ selected, flow, onClick }) {
|
|||
</>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue