Fixed orderde lists

This commit is contained in:
Vince 2021-03-12 16:35:24 +11:00
parent 1aad34f118
commit 2c8c581c45
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ const options = {
return (
<ol className="list-decimal">
{children.map(item => (
<li key={item.key}>{item}</li>
<>{item}</>
))}
</ol>
);