import type DynamicSideContent from "./DynamicSideContent.js";
export default function DynamicSideContentTemplate(this: DynamicSideContent) {
return (
{this._isSideContentFirst ?
<>
{ sideContent.call(this) }
{ mainContent.call(this) }
>
:
<>
{ mainContent.call(this) }
{ sideContent.call(this) }
>
}
);
}
function mainContent(this: DynamicSideContent) {
return (
);
}
function sideContent(this: DynamicSideContent) {
return (
);
}