import { cn } from "@/lib/utils" import Pre from "@/registry/ui/pre" export default function PreDemo({ className }: { className?: string }) { const ExampleCode = `function MyComponent(props) { return (

Hello, {props.name}!

This is an example React component.

)};` return (
      {ExampleCode}
    
) }