mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-09 22:43:33 -07:00
9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
export function createBuildPage() {
|
|
const main = document.createElement("main");
|
|
main.className = "build";
|
|
const title = document.createElement("h1");
|
|
title.append("Build");
|
|
main.append(title);
|
|
return main;
|
|
}
|