Closed
Description
Expected results
What did you expect to happen?
App.tsx has no TypeScript errors
const Section: React.FC<{
title: string;
children: React.ReactNode; /* This line needs to be added to correct the errors */
}> = ({children, title}) => { ... }
Observed results
What happened?
App.tsx has TypeScript errors
const Section: React.FC<{
title: string;
}> = ({children, title}) => { ... }
Metadata
Metadata
Assignees
Labels
No labels