import { Code, Table, Td, Th, Tr } from "nextra/components"; import platforms from "~/platforms.json"; import { NotSupported } from "./not-supported-icon"; import { Supported } from "./supported-icon"; export const SupportedPlatforms = () => ( ); export const PlatformTable = () => ( {platforms.map((spec) => ( ))}
Platform Keys Natively Supported
{spec.keys.map((key) => ( {key} ))} {spec.native ? : }
);