forked from polka_billy/porridger
Added ann details button Added modal shown on its click Moved trashbox selection there Added trashboxes mock while testing in restricted area
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { Announcement } from '../api/announcement/types'
|
|
|
|
const DAY_MS = 24 * 60 * 60 * 1000
|
|
|
|
const isAnnExpired = (ann: Announcement) => (
|
|
(ann.bestBy - Date.now()) < DAY_MS
|
|
)
|
|
|
|
export { isAnnExpired }
|