10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
export default function Page(content: HTMLElement) {
|
|
const el = document.createElement("div");
|
|
|
|
el.classList.add("page");
|
|
el.innerHTML =
|
|
'<div class="back" onclick="window.history.back()"><i class="fa fa-arrow-left" aria-hidden="true"></i></div>';
|
|
el.appendChild(content);
|
|
|
|
return el;
|
|
}
|