diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-08-31 12:31:25 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-08-31 12:31:25 -0400 |
commit | e9b9cd2cd88e453a3a35cf3f672ba965660b9ff2 (patch) | |
tree | df34e0aa8ffbc51fc14cbb1065437ba87e7b490f /src/components/Card.jsx | |
parent | 3ce7ae5c53705c213b293bb7bca833b066c14d6a (diff) |
Update the dashboard with a message about the lack of any dashboards
Diffstat (limited to 'src/components/Card.jsx')
-rw-r--r-- | src/components/Card.jsx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/components/Card.jsx b/src/components/Card.jsx deleted file mode 100644 index 95bd583..0000000 --- a/src/components/Card.jsx +++ /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="cardLink" to={props.link}> - <div className="Card animate"> - <p> - <span className="Latest">{props.latest}</span> <span className="Diff animate">({diff})</span> - </p> - <h3> - {props.name} - </h3> - </div> - </Link> - ); -}; - -export default Card; |