Commit 734501a1 authored by Jakob Moser's avatar Jakob Moser
Browse files

Remove irrelevant (and now also invalidly formatted) mock data

parent 01e6beec
Loading
Loading
Loading
Loading

static/mockData.js

deleted100644 → 0
+0 −89
Original line number Diff line number Diff line
const songs = [
    {
        id: "s1",
        title: "Bohemian Rhapsody",
        artist: "Queen",
        isFavorite: false,
    },
    {
        id: "s2",
        title: "Stairway to Heaven",
        artist: "Led Zeppelin",
        isFavorite: true,
    },
    { id: "s3", title: "Imagine", artist: "John Lennon", isFavorite: false },
    {
        id: "s4",
        title: "Like a Rolling Stone",
        artist: "Bob Dylan",
        isFavorite: false,
    },
    { id: "s5", title: "Hey Jude", artist: "The Beatles", isFavorite: true },
    {
        id: "s6",
        title: "Smells Like Teen Spirit",
        artist: "Nirvana",
        isFavorite: false,
    },
    {
        id: "s7",
        title: "What's Going On",
        artist: "Marvin Gaye",
        isFavorite: false,
    },
    { id: "s8", title: "Hotel California", artist: "Eagles", isFavorite: true },
    { id: "s9", title: "One", artist: "U2", isFavorite: false },
    {
        id: "s10",
        title: "Billie Jean",
        artist: "Michael Jackson",
        isFavorite: false,
    },
    {
        id: "s11",
        title: "Another Brick in the Wall",
        artist: "Pink Floyd",
        isFavorite: false,
    },
    { id: "s12", title: "Yesterday", artist: "The Beatles", isFavorite: false },
    { id: "s13", title: "Wonderwall", artist: "Oasis", isFavorite: true },
    {
        id: "s14",
        title: "No Woman, No Cry",
        artist: "Bob Marley & The Wailers",
        isFavorite: false,
    },
    {
        id: "s15",
        title: "Hallelujah",
        artist: "Leonard Cohen",
        isFavorite: false,
    },
    { id: "s16", title: "Let It Be", artist: "The Beatles", isFavorite: true },
    {
        id: "s17",
        title: "Sweet Child O' Mine",
        artist: "Guns N' Roses",
        isFavorite: false,
    },
    {
        id: "s18",
        title: "Losing My Religion",
        artist: "R.E.M.",
        isFavorite: true,
    },
    {
        id: "s19",
        title: "Every Breath You Take",
        artist: "The Police",
        isFavorite: false,
    },
    {
        id: "s20",
        title: "Comfortably Numb",
        artist: "Pink Floyd",
        isFavorite: true,
    },
]

export default songs