Allow JSX.Element in content

This commit is contained in:
moon 2022-04-27 13:58:35 -07:00
parent 60334e3c55
commit 14cff0a001
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import './cards.scss';
type Card = {
key: string;
title: string;
content: string;
content: string | JSX.Element;
before: JSX.Element;
};