aboutsummaryrefslogtreecommitdiff
path: root/src/components/Card.jsx
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-07-11 17:10:23 -0400
committerGalen Guyer <galen@galenguyer.com>2022-07-11 17:10:23 -0400
commit935ef7d2f76cca7bc1f9840dc357de85f93a1ec2 (patch)
treecb8ee298a747d6084107266e5d2882e60a6b5daa /src/components/Card.jsx
parent3694bf061ecfe0f6733a0cb9028d044dfc8cf9d2 (diff)
Update for new dashboard frontend
Diffstat (limited to 'src/components/Card.jsx')
-rw-r--r--src/components/Card.jsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/Card.jsx b/src/components/Card.jsx
new file mode 100644
index 0000000..0535033
--- /dev/null
+++ b/src/components/Card.jsx
@@ -0,0 +1,18 @@
+import React from "react";
+import { Link } from "react-router-dom";
+import "./Card.css";
+
+const Card = (props) => {
+ return (
+ <Link className="cardLink" to={props.link}>
+ <div className="Card animate">
+ <p>
+ <span className="Latest">{props.latest}{props.suffix ?? ""}</span>
+ </p>
+ <h3>{props.name}</h3>
+ </div>
+ </Link>
+ );
+};
+
+export default Card;