diff options
Diffstat (limited to 'docs/src/data/operating-systems.js')
-rw-r--r-- | docs/src/data/operating-systems.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/src/data/operating-systems.js b/docs/src/data/operating-systems.js new file mode 100644 index 0000000..0631766 --- /dev/null +++ b/docs/src/data/operating-systems.js @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2020 The ZMK Contributors + * + * SPDX-License-Identifier: CC-BY-NC-SA-4.0 + */ + +export default [ + { + key: "windows", + className: "windows", + heading: "W", + title: "Windows", + }, + { + key: "linux", + className: "linux", + heading: "L", + title: "Linux", + }, + { + key: "android", + className: "android", + heading: "A", + title: "Android", + }, + { + key: "macos", + className: "macos", + heading: "m", + title: "macOS", + }, + { + key: "ios", + className: "ios", + heading: "i", + title: "iOS", + }, +]; |