move files
This commit is contained in:
parent
2457a3f5bd
commit
52adb4602b
@ -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";
|
||||
|
||||
@ -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";
|
||||
|
||||
|
||||
@ -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 = [
|
||||
{
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { History } from "../../history_types";
|
||||
import { History } from "./history_types";
|
||||
|
||||
export function extractHistoryTree(
|
||||
history: History,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user