import * as React from 'react'; import { DialogContentText } from '@mui/material'; const dialogContentTextTest = () => { const CustomComponent: React.FC<{ prop1: string; prop2: number }> = function CustomComponent() { return
; }; return (
{/* @ts-expect-error */} {/* TODO: system props did not catch this error. Add @ts-expect-error after it is fixed. */} {/* TODO: system props did not catch this error. Add @ts-expect-error after it is fixed. */} {/* @ts-expect-error */} {/* @ts-expect-error */} {/* @ts-expect-error */} {/* @ts-expect-error */} {/* @ts-expect-error */} {/* @ts-expect-error */} {/* @ts-expect-error */}
); };