mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
export const notSignedInMessage = {
|
|
type: 'error',
|
|
message: 'You are not signed in',
|
|
} as const;
|
|
export const forbiddenMessage = {
|
|
type: 'error',
|
|
message: 'You are not allowed to access this',
|
|
} as const;
|