import * as React from 'react'; import AppBar from '@mui/material/AppBar'; const CustomComponent: React.FC<{ stringProp: string; numberProp: number }> = function CustomComponent() { return
; }; function AppBarTest() { return (
{/* @ts-expect-error missing stringProp and numberProp */}
); }