gaoluyang
2026-08-28 5acb271085a10f5d34b281f63c754c29eac005c3
1
2
3
4
5
6
import { getOaPageConfig } from "./oaPageRegistry.js";
 
export function useOaPage(pageKey) {
  const config = getOaPageConfig(pageKey);
  return { pageKey, config };
}