- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
let ClientReact = null;
|
|
export function registerClientReact(react) {
|
|
ClientReact = react;
|
|
}
|
|
export function getClientReact() {
|
|
return ClientReact;
|
|
}
|
|
let ServerReact = null;
|
|
export function registerServerReact(react) {
|
|
ServerReact = react;
|
|
}
|
|
export function getServerReact() {
|
|
return ServerReact;
|
|
}
|
|
|
|
//# sourceMappingURL=runtime-reacts.external.js.map
|