import { FC } from 'react' import { Typography, IconChevronRight } from '@supabase/ui' interface Props { framework: string title: string description: string url: string } const ExampleProject: FC = ({ framework, title, description, url }) => { return (
{`${framework}
{title} {description}
) } export default ExampleProject