mirror of https://github.com/dtm-labs/dtm.git
csharpjavadistributed-transactionsdtmgogolangmicroservicenodejsphpdatabasesagaseatatcctransactiontransactionsxapythondistributed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
713 B
23 lines
713 B
import './style.css'
|
|
import javascriptLogo from './javascript.svg'
|
|
import { setupCounter } from './counter.js'
|
|
|
|
document.querySelector('#app').innerHTML = `
|
|
<div>
|
|
<a href="https://vitejs.dev" target="_blank">
|
|
<img src="/vite.svg" class="logo" alt="Vite logo" />
|
|
</a>
|
|
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank">
|
|
<img src="${javascriptLogo}" class="logo vanilla" alt="JavaScript logo" />
|
|
</a>
|
|
<h1>Hello Vite!</h1>
|
|
<div class="card">
|
|
<button id="counter" type="button"></button>
|
|
</div>
|
|
<p class="read-the-docs">
|
|
Click on the Vite logo to learn more
|
|
</p>
|
|
</div>
|
|
`
|
|
|
|
setupCounter(document.querySelector('#counter'))
|
|
|