import React from "react"; export function Specifications({ specifications }) { const title =

Specifications

; if (specifications === "non-standard") { return ( <> {title}

This feature is non-standard and is not included in any official specification. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

); } else if (Array.isArray(specifications)) { return ( <> {title} ); } else { throw new Error("Neither recognized string or array"); } }