static-cms/website/src/components/notification.js
2018-09-06 14:44:58 -04:00

11 lines
243 B
JavaScript

import React from 'react';
import cn from 'classnames';
const Notification = ({ url, loud, children }) => (
<a href={url} className={cn('notification', { 'notification-loud': loud })}>
{children}
</a>
);
export default Notification;