summaryrefslogtreecommitdiff
path: root/docs/src/components/codes/Footnotes.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/components/codes/Footnotes.jsx')
-rw-r--r--docs/src/components/codes/Footnotes.jsx30
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/src/components/codes/Footnotes.jsx b/docs/src/components/codes/Footnotes.jsx
new file mode 100644
index 0000000..b382141
--- /dev/null
+++ b/docs/src/components/codes/Footnotes.jsx
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2020 The ZMK Contributors
+ *
+ * SPDX-License-Identifier: CC-BY-NC-SA-4.0
+ */
+
+import React from "react";
+import PropTypes from "prop-types";
+import Footnote from "./Footnote";
+
+export default function Footnotes({ footnotes = [], id }) {
+ return (
+ <div className="footnotes">
+ <a id={id} className="anchor" />
+ <div className="label">Notes</div>
+ <div className="notes">
+ {footnotes.map((footnote) => (
+ <Footnote key={footnote.id} {...footnote}>
+ {footnote.value}
+ </Footnote>
+ ))}
+ </div>
+ </div>
+ );
+}
+
+Footnotes.propTypes = {
+ footnotes: PropTypes.array.isRequired,
+ id: PropTypes.string.isRequired,
+};