change object strings to multiline

This commit is contained in:
emma 2025-02-01 18:05:02 -05:00
parent a4594f1e7b
commit 78d937f2f9
1 changed files with 12 additions and 12 deletions

View File

@ -1,16 +1,16 @@
const notesForEmma = { const notesForEmma = {
tileOne: "hello", tileOne: ```hello```,
tileTwo: "emma", tileTwo: ```emma```,
tileThree: "how", tileThree: ```how```,
tileFour: "are", tileFour: ```are```,
tileFive: "you", tileFive: ```you```,
tileSix: "i", tileSix: ```i```,
tileSeven: "think", tileSeven: ```think```,
tileEight: "you", tileEight: ```you```,
tileNine: "are", tileNine: ```are```,
tileTen: "a", tileTen: ```a```,
tileEleven: "great", tileEleven: ```great```,
tileTwelve: "person", tileTwelve: ```person```,
}; };
const tiles = document.querySelectorAll(".tile"); const tiles = document.querySelectorAll(".tile");