1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* * Copyright (c) 2020 The ZMK Contributors * * SPDX-License-Identifier: CC-BY-NC-SA-4.0 */ import footnotes from "./data/footnotes"; export function getFootnote(id) { const footnote = footnotes[id]; if (typeof footnote != "undefined") { return footnote; } }