Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions src/data/songs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
export type Song = {
id: string
artist: string
title: string
}

export const songs: Song[] = [
{
id: 'total-eclipse-of-the-heart',
artist: 'Bonnie Tyler',
title: 'Total Eclipse of the Heart',
},
{
id: 'holding-out-for-a-hero',
artist: 'Bonnie Tyler',
title: 'Holding Out for a Hero',
},
{
id: 'its-a-heartache',
artist: 'Bonnie Tyler',
title: "It's a Heartache",
},
{
id: 'lost-in-france',
artist: 'Bonnie Tyler',
title: 'Lost in France',
},
{
id: 'faster-than-the-speed-of-night',
artist: 'Bonnie Tyler',
title: 'Faster Than the Speed of Night',
},
{
id: 'if-i-sing-you-a-love-song',
artist: 'Bonnie Tyler',
title: 'If I Sing You a Love Song',
},
{
id: 'have-you-ever-seen-the-rain',
artist: 'Bonnie Tyler',
title: 'Have You Ever Seen the Rain?',
},
{
id: 'making-love-out-of-nothing-at-all',
artist: 'Bonnie Tyler',
title: 'Making Love (Out of Nothing at All)',
},
{
id: 'loving-you-is-a-dirty-job-but-somebodys-gotta-do-it',
artist: 'Bonnie Tyler',
title: "Loving You Is a Dirty Job but Somebody's Gotta Do It",
},
{
id: 'a-rockin-good-way-to-mess-around-and-fall-in-love',
artist: 'Bonnie Tyler',
title: "A Rockin' Good Way (to Mess Around and Fall in Love)",
},
{
id: 'more-than-a-lover',
artist: 'Bonnie Tyler',
title: 'More Than a Lover',
},
{
id: 'angel-of-the-morning',
artist: 'Bonnie Tyler',
title: 'Angel of the Morning',
},
]