PR-342468: trying to fix cypress pipeline.

This commit is contained in:
2025-07-16 17:40:48 +00:00
parent 665252faa4
commit baa85f7916
6 changed files with 14 additions and 23 deletions

View File

@ -9,7 +9,7 @@ type TCardProps = {
/**
* Is this the child component of the card. (The content)
*/
children?: JSX.Element,
children?: React.ReactNode,
};
const Card: FC<TCardProps> = ({ title, children}) => {
@ -22,4 +22,4 @@ const Card: FC<TCardProps> = ({ title, children}) => {
);
};
export { Card, TCardProps }
export { Card, TCardProps }