mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-27 02:38:10 -07:00
oracle: v4
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export function createExplorePage() {
|
||||
const main = document.createElement("main");
|
||||
main.className = "explore";
|
||||
const title = document.createElement("h1");
|
||||
title.append("Explore");
|
||||
main.append(title);
|
||||
return main;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
main.explore {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-size: 4rem;
|
||||
}
|
||||
Reference in New Issue
Block a user