ajpenalosa
7/16/2018 - 6:20 PM

Props

import React from "react";

const Alert = props => {
  console.log(props);

  return (
    <div className={`alert alert-${props.type || "success"}`} role="alert">
      {props.children}
    </div>
  );
};

export default Alert;