{`${updates('events.date', {
year: date.getFullYear(),
month: `${date.getMonth() + 1}`.padStart(2, '0'),
})} ${updates(event)}`}
{newItemSection('character')}
{uncapItemSection('character')}
{transcendItemSection('character')}
{newItemSection('weapon')}
{uncapItemSection('weapon')}
{transcendItemSection('weapon')}
{newItemSection('summon')}
{uncapItemSection('summon')}
{transcendItemSection('summon')}
{newRaidSection()}
{numNotes > 0 ? (
{updates('labels.updates')}
{[...Array(numNotes)].map((e, i) => (
-
{updates(`versions.${version}.features.${i}`)}
))}
) : (
''
)}
)
}
ContentUpdate.defaultProps = {
numNotes: 0,
}
export default ContentUpdate