|
@@ -3,6 +3,7 @@ import Quote from "./Quote";
|
|
|
import SentEdit from "./SentEdit";
|
|
import SentEdit from "./SentEdit";
|
|
|
import SentRead from "./SentRead";
|
|
import SentRead from "./SentRead";
|
|
|
import Term from "./Term";
|
|
import Term from "./Term";
|
|
|
|
|
+import WbwSent from "./WbwSent";
|
|
|
import Wd from "./Wd";
|
|
import Wd from "./Wd";
|
|
|
|
|
|
|
|
interface IWidgetMdTpl {
|
|
interface IWidgetMdTpl {
|
|
@@ -19,6 +20,8 @@ const Widget = ({ tpl, props }: IWidgetMdTpl) => {
|
|
|
return <SentRead props={props ? props : ""} />;
|
|
return <SentRead props={props ? props : ""} />;
|
|
|
case "sentedit":
|
|
case "sentedit":
|
|
|
return <SentEdit props={props ? props : ""} />;
|
|
return <SentEdit props={props ? props : ""} />;
|
|
|
|
|
+ case "wbw_sent":
|
|
|
|
|
+ return <WbwSent props={props ? props : ""} />;
|
|
|
case "wd":
|
|
case "wd":
|
|
|
return <Wd props={props ? props : ""} />;
|
|
return <Wd props={props ? props : ""} />;
|
|
|
case "quote":
|
|
case "quote":
|