JSFiddle - React, Tailwind, and code Playground

by Matt Felten

JavaScript

var compute_links = [
	["How to Install the OpenStack command-line clients", "/hc/en-us/articles/216185658-How-to-Install-the-OpenStack-command-line-clients"],
	["Test2", "butts"]
];

// Example how to use
compute_links.forEach( function(link){
	console.log(link[0]);
  console.log(link[1]);
  console.log('--');
});