/* * 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 (
Notes
{footnotes.map((footnote) => ( {footnote.value} ))}
); } Footnotes.propTypes = { footnotes: PropTypes.array.isRequired, id: PropTypes.string.isRequired, };