mirror of
https://github.com/logos-blockchain/logos-blockchain-block-explorer-template.git
synced 2026-01-07 07:33:09 +00:00
12 lines
357 B
JavaScript
12 lines
357 B
JavaScript
import { h } from 'preact';
|
|
import BlocksTable from '../components/BlocksTable.js';
|
|
import TransactionsTable from '../components/TransactionsTable.js';
|
|
|
|
export default function HomeView() {
|
|
return h(
|
|
'main',
|
|
{ class: 'wrap' },
|
|
h('section', { class: 'two-columns twocol' }, h(BlocksTable, {}), h(TransactionsTable, {})),
|
|
);
|
|
}
|