// theme6-drawing 単体モックのエントリ。
// ポータル・ログインは含まない（テーマ⑥画面のみ）。ホーム操作はテーマ0ポータル（別モック）へ新規タブ遷移。
const PORTAL_URL = 'https://159-chemico-portal.malme.app';

const App = () => {
  const [toast, setToast] = useState(null);
  const goPortal = () => window.open(PORTAL_URL, '_blank', 'noopener');

  return (
    <div className="cx">
      <AppHeader theme="図面数量照査" onHome={goPortal} onLogout={goPortal} onOpenSearch={()=>setToast('検索は本モックに含まれません（テーマ①モックをご覧ください）')}/>
      <ThemeDrawing onBack={goPortal} notify={setToast}/>
      {toast && <Toast msg={toast} onDone={()=>setToast(null)}/>}
    </div>
  );
};

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