Format code

This commit is contained in:
Igor Carvalho 2023-07-19 18:07:51 -03:00
commit 7601fca2f7
3 changed files with 8 additions and 4 deletions

View file

@ -3,8 +3,8 @@ import type { FC } from "react";
import React from "react";
import { Tooltip as ReactTooltip } from "react-tooltip";
import "react-tooltip/dist/react-tooltip.css";
import { classNames } from "../../utils/utils";
import { TooltipProps } from "../../types/components";
import { classNames } from "../../utils/utils";
const TooltipReact: FC<TooltipProps> = ({
selector,

View file

@ -7,8 +7,12 @@ import {
useState,
} from "react";
import { useReactFlow } from "reactflow";
import {
HistoryItem,
UseUndoRedoOptions,
undoRedoContextType,
} from "../types/typesContext";
import { TabsContext } from "./tabsContext";
import { undoRedoContextType, UseUndoRedoOptions , UseUndoRedo, HistoryItem } from "../types/typesContext";
const initialValue = {
undo: () => {},

View file

@ -1,6 +1,6 @@
import { ReactFlowInstance, Edge, Node } from "reactflow";
import { APIClassType } from "../api";
import { Edge, Node, ReactFlowInstance } from "reactflow";
import { AlertItemType } from "../alerts";
import { APIClassType } from "../api";
const types: { [char: string]: string } = {};
const template: { [char: string]: APIClassType } = {};