blob: 0a5341d2cb5c620697c5799e19cd821d409db542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { makeElement } from "../../arching-kaos-generator.js";
var stellarSection = {
id: "stellar-section",
innerHTML: [
{
element: "h2",
innerText: "Stellar dashboard"
},
{
element: "button",
className: "sub-input",
id:"stellar-freigher-connect-address-button",
onclick:"connect()",
innerText:"Connect with Stellar address"
}
]
};
makeElement(stellarSection, document.querySelector('.main'));
|