Repository URL to install this package:
|
Version:
2.1.12 ▾
|
const list = [
{
isSelected: false,
label: `Today's Hours:`,
list: [{ day: 'Friday', hours: '9:00a - 10:00p' }],
},
{
isSelected: true,
label: 'Regular Hours:',
list: [
{ day: 'Monday', hours: '9:00a - 10:00p' },
{ day: 'Tuesday', hours: '9:00a - 10:00p' },
{ day: 'Wednesday', hours: '9:00a - 10:00p' },
{ day: 'Thursday', hours: '9:00a - 10:00p' },
{ day: 'Friday', hours: '9:00a - 10:00p' },
{ day: 'Saturday', hours: '9:00a - 10:00p' },
{ day: 'Sunday', hours: '9:00a - 10:00p' },
],
},
]
export { list }