suno / src /app /components /Swagger.tsx
rippanteq7's picture
Upload folder using huggingface_hub
dfe72e0 verified
raw
history blame
316 Bytes
'use client';
import 'swagger-ui-react/swagger-ui.css';
import dynamic from "next/dynamic";
type Props = {
spec: Record<string, any>,
};
const SwaggerUI = dynamic(() => import('swagger-ui-react'), { ssr: false });
function Swagger({ spec }: Props) {
return <SwaggerUI spec={spec}/>;
}
export default Swagger;