mirror of
https://github.com/KwiTsukasa/kt-template-admin.git
synced 2026-05-27 16:35:47 +08:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
let mockTimeZone: null | string = null;
|
|
|
|
export const setTimezone = (timeZone: string) => {
|
|
mockTimeZone = timeZone;
|
|
};
|
|
|
|
export const getTimezone = () => {
|
|
return mockTimeZone;
|
|
};
|