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;
|
|
};
|