summaryrefslogtreecommitdiff
path: root/src/core/utils/greeting.js
blob: 014c0e3ce541e550f4c75f9b92132f65da1c975a (plain)
1
2
3
4
5
6
7
8
9
const greeting = () => {
  let hours = new Date().getHours()
  if (hours < 11) return 'Selamat Pagi'
  if (hours < 15) return 'Selamat Siang'
  if (hours < 18) return 'Selamat Sore'
  return 'Selamat Malam'
}

export default greeting