import React from 'react'; import Notification from './notification'; function Notifications({ notifications }) { return notifications.map((node, i) => ( {node.message} )); } export default Notifications;