diff --git a/web/next-example/src/components/CheckSourceCode/CheckSourceCode.tsx b/web/next-example/src/components/CheckSourceCode/CheckSourceCode.tsx index ced04dc9f..25073c934 100644 --- a/web/next-example/src/components/CheckSourceCode/CheckSourceCode.tsx +++ b/web/next-example/src/components/CheckSourceCode/CheckSourceCode.tsx @@ -1,10 +1,11 @@ import { ExternalLinkIcon, StarIcon } from 'lucide-react'; type Props = { - example: string; + example?: string; + directLink?: string; }; -const CheckSourceCode = ({ example }: Props) => { +const CheckSourceCode = ({ example, directLink }: Props) => { return (