(function () {
  'use strict';
  const NS = (window.EnterpriseProjects = window.EnterpriseProjects || {});

/* projects/enterprise-projects/app.jsx
 * 企业版 ·「项目」功能 — 设计方案探索
 * 内容来源：从 Claude Design 导出的 .dc.html 概要设计稿，整页直接以 iframe 嵌入展示。
 * 该 .dc.html 自带 dc-runtime（support.js），保留原生的平移 / 缩放 / 导出能力。
 */
/* global React */

function EnterpriseProjectsApp() {
  // iframe 全屏铺满；面包屑 / 目录都是 position:fixed 浮在内容之上，
  // 与其它项目（DesignCanvas 模式）保持一致，不在顶部多刷一层背景。
  return (
    <iframe
      src="projects/enterprise-projects/design.dc.html?v=2"
      title="企业版 · 项目功能设计方案"
      style={{ position: 'fixed', inset: 0, width: '100%', height: '100%', border: 'none', display: 'block' }} />);

}

  Object.assign(NS, { EnterpriseProjectsApp });
})();
