/* * Copyright (c) 2020 The ZMK Contributors * * SPDX-License-Identifier: CC-BY-NC-SA-4.0 */ import React from "react"; import operatingSystems from "@site/src/data/operating-systems"; export default function OsLegend() { return (
{operatingSystems.map(({ key, className, heading, title }) => (
{heading} {title}
))}
); } OsLegend.propTypes = {};