DEV Community

Discussion on: 7 Tips for Clean React TypeScript Code you Must Know 🧹✨

Collapse
 
itminhnhut profile image
itminhnhut • Edited
import { FC, ReactNode } from 'react';

interface ComponentProps {
    children: ReactNode;
}
const LeadsList: FC<ComponentProps> = () => {}

my opinion.
Enter fullscreen mode Exit fullscreen mode