JSFiddle - React, Tailwind, and code Playground

by aprilkw

JavaScript

var game1 = {
    title: "Kingdom Heart2",
    platform: "PS3",
    publisher: "Square Enix",
    category: "RPG"
};
var game2 = {
    title: "Injustice: Gods Among Us",
    platform: "PS3",
    publisher: "WB Games",
    category: "Fighting"
};
var game3 = {
    title: "Spec Ops: The Line",
    platform: "PC",
    publisher: "2K Games",
    category: "Action"
};

var gameTypes("game1", "game2", "game3", "game4");
var games = [{
    title: "Kingdom Heart2",
    platform: "PS2",
    publisher: "SquareEnix",
    category: "RPG"
}, {
    title: "Injustice: Gods Among Us",
    platform: ["PS3", "Xbox360", "WillU"],
    publisher: "WB Games",
    category: "Fighting"
}, {
    title: "Spec Ops: The Line",
    platform: ["PC", "PS3", "Xbox360"],
    publisher: "2K Games",
    category: "Action"
}, {
    title: "Harvest Moon: Grand Bazaar",
    platform: "NDS",
    publisher: "Natsume",
    category: "Simulation"
}];

var gameshop = {
    "game1", "game2", "game3", "game4"
};