File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
guided-workshop/resources/solutions
what-the-hack/Coach/resources Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ const Hours = () => {
2020 // get today's hours
2121 const todayHours = shelterHours . find ( day => day . day === today ) ;
2222
23- // display todays hours
23+ // display todays in a div container with an id of hours
2424 return (
25- < div >
25+ < div id = "hours" >
2626 < h2 > Today's Hours</ h2 >
2727 < p > { todayHours . day } : { todayHours . open } to { todayHours . close } </ p >
2828 </ div >
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ const Hours = () => {
2020 // get today's hours
2121 const todayHours = shelterHours . find ( day => day . day === today ) ;
2222
23- // display todays hours
23+ // display todays in a div container with an id of hours
2424 return (
25- < div >
25+ < div id = "hours" >
2626 < h2 > Today's Hours</ h2 >
2727 < p > { todayHours . day } : { todayHours . open } to { todayHours . close } </ p >
2828 </ div >
File renamed without changes.
You can’t perform that action at this time.
0 commit comments