static-cms/website/src/components/notifications.js
2021-05-31 17:46:41 +03:00

14 lines
297 B
JavaScript

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