feat: add showTime prop to DevelopmentInProgress component across multiple pages

This commit is contained in:
chenghh-9609
2025-10-22 15:19:24 +08:00
parent b9a7e7a0a9
commit f17e82a3cc
13 changed files with 55 additions and 57 deletions

View File

@@ -1,5 +1,5 @@
import { useState } from "react";
import { Tabs, Button, Card } from "antd";
import { Tabs, Button } from "antd";
import { Plus, ArrowRight } from "lucide-react";
import DataAnnotation from "../DataAnnotation/Annotate/components/TextAnnotation";
import { useNavigate } from "react-router";
@@ -8,7 +8,7 @@ import SynthesisTaskTab from "./components/SynthesisTaskTab";
import DevelopmentInProgress from "@/components/DevelopmentInProgress";
export default function DataSynthesisPage() {
return <DevelopmentInProgress />;
return <DevelopmentInProgress showTime="2025.11.30" />;
const navigate = useNavigate();
const [activeTab, setActiveTab] = useState("tasks");