9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
import React from 'react';
|
|
|
|
export default function IsNew({ item }) {
|
|
if (item.isNew) {
|
|
return <span className="is-new">NEW</span>;
|
|
}
|
|
return null;
|
|
}
|