8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
|
export async function resolvePageComponent(path, pages) {
|
||
|
const page = pages[path];
|
||
|
if (typeof page === 'undefined') {
|
||
|
throw new Error(`Page not found: ${path}`);
|
||
|
}
|
||
|
return typeof page === 'function' ? page() : page;
|
||
|
}
|