import React from 'react'
import ReactDOM from 'react-dom/client'
import FoldFlowApp from './FoldFlowApp.jsx' // 或你的主件名稱
import './index.css'

// ==========================================
// 🛡️ Console 潔癖攔截器
// 攔截並隱藏 @react-three/fiber 底層觸發的無害棄用警告
// ==========================================
const originalWarn = console.warn;
console.warn = (...args) => {
  if (
    args[0] && 
    typeof args[0] === 'string' && 
    args[0].includes('THREE.Clock: This module has been deprecated')
  ) {
    return; // 遇到這句碎碎念，直接靜音！
  }
  originalWarn(...args); // 其他正常的警告照常放行
};

ReactDOM.createRoot(document.getElementById('root')).render(
  <FoldFlowApp />
)