专案完成

This commit is contained in:
‘Liammcl’
2025-01-04 20:09:06 +08:00
parent 9a60a688f3
commit 780e7519c1
12 changed files with 2688 additions and 63 deletions

View File

@@ -1,7 +1,7 @@
import React from "react";
import QuataSections from "./quotation";
import TaskSections from "./task";
import Project from './project'
export default function SectionComponent({ activeType }) {
const renderFn = (type) => {
switch (type) {
@@ -10,7 +10,7 @@ export default function SectionComponent({ activeType }) {
case "task":
return <TaskSections />;
default:
return <div></div>;
return <Project></Project>;
}
};
return <>{renderFn(activeType)}</>;