visuddhinanda %!s(int64=2) %!d(string=hai) anos
pai
achega
7dc8a9f282
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      dashboard/src/components/template/MdTpl.tsx

+ 3 - 0
dashboard/src/components/template/MdTpl.tsx

@@ -6,6 +6,7 @@ import Nissaya from "./Nissaya";
 import Note from "./Note";
 import ParaHandle from "./ParaHandle";
 import ParaShell from "./ParaShell";
+import Qa from "./Qa";
 import Quote from "./Quote";
 import QuoteLink from "./QuoteLink";
 import SentEdit from "./SentEdit";
@@ -54,6 +55,8 @@ const Widget = ({ tpl, props, children }: IWidgetMdTpl) => {
       return <QuoteLink props={props ? props : ""} />;
     case "para-shell":
       return <ParaShell props={props ? props : ""}>{children}</ParaShell>;
+    case "qa":
+      return <Qa props={props ? props : ""} />;
     default:
       return <>未定义模版({tpl})</>;
   }