'use client' import Doc from '@/app/components/develop/doc' import Loading from '@/app/components/base/loading' import ApiServer from '@/app/components/develop/ApiServer' import { useStore as useAppStore } from '@/app/components/app/store' type IDevelopMainProps = { appId: string } const DevelopMain = ({ appId }: IDevelopMainProps) => { const appDetail = useAppStore(state => state.appDetail) if (!appDetail) { return (