refactor: extract components folder

This commit is contained in:
Li Xin
2025-05-02 10:43:14 +08:00
parent 18d896d15d
commit fdfc607747
44 changed files with 44 additions and 44 deletions

View File

@@ -2,6 +2,7 @@
// SPDX-License-Identifier: MIT
"use client";
import {
ReactFlow,
Background,
@@ -31,12 +32,11 @@ import {
} from "react";
import "@xyflow/react/dist/style.css";
import { Tooltip } from "~/components/deer-flow/tooltip";
import { ShineBorder } from "~/components/magicui/shine-border";
import { Button } from "~/components/ui/button";
import { useIntersectionObserver } from "~/hooks/use-intersection-observer";
import { Tooltip } from "../../_components/tooltip";
const ROW_HEIGHT = 85;
const ROW_1 = 0;
const ROW_2 = ROW_HEIGHT;

View File