5 lines
128 B
Plaintext
5 lines
128 B
Plaintext
|
// @ts-nocheck
|
||
|
export const getCurrentPage = ():Page => {
|
||
|
const pages = getCurrentPages();
|
||
|
return pages[pages.length - 1]
|
||
|
};
|