move files

This commit is contained in:
Abi Raja 2023-12-07 09:39:19 -05:00
parent 2457a3f5bd
commit 52adb4602b
5 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ import html2canvas from "html2canvas";
import { USER_CLOSE_WEB_SOCKET_CODE } from "./constants";
import CodeTab from "./components/CodeTab";
import OutputSettingsSection from "./components/OutputSettingsSection";
import { History } from "./history_types";
import { History } from "./components/history/history_types";
import HistoryDisplay from "./components/history/HistoryDisplay";
import { extractHistoryTree } from "./components/history/utils";
import toast from "react-hot-toast";

View File

@ -1,5 +1,5 @@
import { ScrollArea } from "@/components/ui/scroll-area";
import { History, HistoryItemType } from "../../history_types";
import { History, HistoryItemType } from "./history_types";
import toast from "react-hot-toast";
import classNames from "classnames";

View File

@ -1,6 +1,6 @@
import { expect, test } from "vitest";
import { extractHistoryTree } from "./utils";
import type { History } from "../../history_types";
import type { History } from "./history_types";
const data: History = [
{

View File

@ -1,4 +1,4 @@
import { History } from "../../history_types";
import { History } from "./history_types";
export function extractHistoryTree(
history: History,