import type { PageLoad } from './$types';

export const load: PageLoad = async ({ url }) => {
  let code = url.searchParams.get('code');
  if (code) {
    return { code };
  } else {
    return null;
  }
};