@A.Zieglerclaude无法正常显示交互组件 中发帖

刚刚试了下让claude画一个流程图,但是出来的全是代码,没有自动打开右侧的交互组建进行显示,请问有小伙伴们遇到过吗?如何解决? 

import React, { useState } from ‘react’; import { ChevronDown, ChevronUp } from ‘lucide-react’;
export default function BethesdaSystem() { const [expanded, setExpanded] = useState({ nilm: true });
const toggleCategory = (id) => { setExpanded(prev => ({ …prev, [id]: !prev[id] })); };
const categories = [ {