export const take = [
{ type: "json", label: "JSON" },
{
type: "import",
value: "https://cdn.jsdelivr.net/npm/js-yaml@4.1.0/dist/js-yaml.min.js",
},
]
export const make = (json) => {
const value = jsyaml.dump(json)
return [{ type: "code", label: "YAML", value }]
}