From 53939633d070ff498fbb9ae2f26a0be0317efee6 Mon Sep 17 00:00:00 2001 From: Brendan F Date: Sun, 25 Jun 2023 22:22:37 -0700 Subject: Move startDate to one defined spot --- src/constants/index.ts | 1 + src/constants/startDate.ts | 1 + 2 files changed, 2 insertions(+) create mode 100644 src/constants/startDate.ts (limited to 'src/constants') diff --git a/src/constants/index.ts b/src/constants/index.ts index d396519..00507bd 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -1,3 +1,4 @@ export { playTimes } from "./playTimes"; export { songs } from "./songs"; +export { startDate } from "./startDate"; export { theme } from "./theme"; diff --git a/src/constants/startDate.ts b/src/constants/startDate.ts new file mode 100644 index 0000000..d0fe930 --- /dev/null +++ b/src/constants/startDate.ts @@ -0,0 +1 @@ +export const startDate = new Date('5/5/2023'); -- cgit v1.2.3