|
|
@@ -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})</>;
|
|
|
}
|