diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-04-13 19:10:44 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-04-13 19:44:24 -0400 |
commit | 264e571b0ca34d24f4997c5864a43d4f475e14dc (patch) | |
tree | 3ddfb30dbd97dc5c5c3da91a8e1cba4916348190 /src/components/Card.jsx | |
parent | 290e1694efacc8bfea62b78538cb9d40003f62f6 (diff) |
full version 2 re-write
Diffstat (limited to 'src/components/Card.jsx')
-rw-r--r-- | src/components/Card.jsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/components/Card.jsx b/src/components/Card.jsx new file mode 100644 index 0000000..95bd583 --- /dev/null +++ b/src/components/Card.jsx @@ -0,0 +1,25 @@ +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; |