import React from 'react'; export default function IsNew({ item }) { if (item.isNew) { return NEW; } return null; }