Guest User

Untitled

a guest
Feb 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import styles from './styles.scss';
  4.  
  5. export default function Banner({ title, message }) {
  6. return (
  7. <div className={styles.banner}>
  8. {title && <h3 className={styles.title}>{title}</h3>}
  9. <p className={styles.message}>{message}</p>
  10. </div>
  11. );
  12. }
Add Comment
Please, Sign In to add comment