mirror of
https://github.com/polaroi8d/cactoide.git
synced 2026-03-22 06:05:28 +00:00
8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
export function load({ cookies }) {
|
|
const cactoideUserId = cookies.get('cactoideUserId');
|
|
|
|
return {
|
|
cactoideUserId
|
|
};
|
|
}
|