chore: add website preview templates (#1716)

This commit is contained in:
Shawn Erquhart
2018-09-06 14:44:58 -04:00
committed by GitHub
parent 9b18596fa2
commit 4fadf3fdb6
13 changed files with 1497 additions and 135 deletions

View File

@ -0,0 +1,10 @@
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;