diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-07-11 17:10:23 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-07-11 17:10:23 -0400 |
commit | 935ef7d2f76cca7bc1f9840dc357de85f93a1ec2 (patch) | |
tree | cb8ee298a747d6084107266e5d2882e60a6b5daa /src/Card.js | |
parent | 3694bf061ecfe0f6733a0cb9028d044dfc8cf9d2 (diff) |
Update for new dashboard frontend
Diffstat (limited to 'src/Card.js')
-rw-r--r-- | src/Card.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Card.js b/src/Card.js deleted file mode 100644 index a58f611..0000000 --- a/src/Card.js +++ /dev/null @@ -1,25 +0,0 @@ -import React from "react"; -import { Link } from "react-router-dom"; -import "./Card.css"; - -const Card = (props) => { - let diff = props.diff.toString(); - if (diff.charAt(0) != "-") { - diff = "+" + diff; - } - - return ( - <Link className="Card" style={{ padding: 0 }} to={props.link}> - <div className="group bg-white hover:bg-orange-400 rounded-lg border-2 border-orange-300 hover:border-orange-400 p-2 m-6 transition ease-in-out duration-300"> - <p> - <span className="text-2xl group-hover:text-white transition ease-in-out duration-300"> - {props.latest}{" "} - </span> - </p> - <h3 className="text-base group-hover:text-white transition ease-in-out duration-300">{props.name}</h3> - </div> - </Link> - ); -}; - -export default Card; |