Browse Source

add window style

visuddhinanda 1 year ago
parent
commit
2b6fdcc2fb
1 changed files with 3 additions and 0 deletions
  1. 3 0
      dashboard-v4/dashboard/src/components/template/Article.tsx

+ 3 - 0
dashboard-v4/dashboard/src/components/template/Article.tsx

@@ -163,6 +163,9 @@ export const ArticleCtl = ({
         </Link>
       );
       break;
+    case "window":
+      output = <div style={{ width: "100%" }}>{article}</div>;
+      break;
     default:
       break;
   }