diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 23:08:04 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 23:09:31 -0700 |
| commit | 91180344b1b58cb0cb657f63f7621f8fda959608 (patch) | |
| tree | 7911775c3971b3812973f7d3d622dc7a2931465e /src/constants | |
| parent | 08238290c2bae61592f5626d021c49e4a7fc26e8 (diff) | |
Move app name to a constant
Diffstat (limited to 'src/constants')
| -rw-r--r-- | src/constants/appName.ts | 1 | ||||
| -rw-r--r-- | src/constants/index.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/constants/appName.ts b/src/constants/appName.ts new file mode 100644 index 0000000..57237b8 --- /dev/null +++ b/src/constants/appName.ts @@ -0,0 +1 @@ +export const appName = "EpicWolverine's Heardle"
\ No newline at end of file diff --git a/src/constants/index.ts b/src/constants/index.ts index 00507bd..bf50a38 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -1,3 +1,4 @@ +export { appName } from "./appName"; export { playTimes } from "./playTimes"; export { songs } from "./songs"; export { startDate } from "./startDate"; |
