Skip to content

Latest commit

 

History

History

day-04

Day 04

Challenge description

clock

Use CSS Scroll Snap to create a clock which showcases the following time details:

  • Year
  • Month
  • Day
  • Day of the week (SUN, MON, TUE, WED, THU, FRI, SAT)
  • Hour (in 24-hour format)
  • Minute

Requirements:

  • This clock initially displays the user's local time
  • The user is able to scroll to adjust the time

TODO:

  • Unit tests

Getting Started

Use PNPM to install dependencies

pnpm install

Use PNPM to develop

pnpm --filter day-04 dev
pnpm --filter day-04 test:dev

Use Bazel to build and test

bazel build //challenges/day-04:build
bazel test //challenges/day-04:ut_test

References