私はオブジェクトの配列を持っています。マップを使ってHTML ReactJSを作成する
notifications = [
{notification:"this is notification1"},
{notification:"this is notification2"},
{notification:"this is notification3"},
]
私は配列をマップし、そこからHTMLコードを作成しようとしていました。
return (
<div>
{notifications.map(function(notificationItem) {
<a> {notificationItem.notification} </a>
})}
</div>
);
誰かがこの間違いを教えてください。
ありがとうございました!
非常にありがとうございます –