static-cms/website/src/components/notifications.js

14 lines
297 B
JavaScript
Raw Normal View History

import React from 'react';
import Notification from './notification';
function Notifications({ notifications }) {
2020-06-04 20:51:07 +03:00
return notifications.map((node, i) => (
<Notification key={i} url={node.url} loud={node.loud}>
{node.message}
</Notification>
));
}
export default Notifications;