mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
import { html, nothing, TemplateResult } from 'core/utils';
|
|
|
|
export default (props): TemplateResult => {
|
|
return html`<div>
|
|
<div class="wallet-buttons">
|
|
<button class="btn btn-squared btn-primary" app-action="click:history-page#transactionCheck">
|
|
Check Transactions
|
|
</button>
|
|
</div>
|
|
<app-pagination data-target="history-page.pagination"></app-pagination>
|
|
</div>`;
|
|
};
|