mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-08 22:21:56 -07:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
export function createExplorePage() {
|
|
const main = document.createElement("main");
|
|
main.className = "explore";
|
|
const title = document.createElement("h1");
|
|
title.append("Explore");
|
|
main.append(title);
|
|
return main;
|
|
}
|