25 lines
688 B
TypeScript
25 lines
688 B
TypeScript
import styles from './index.module.scss';
|
|
import { EtherscanLink } from '@vegaprotocol/ui-toolkit';
|
|
import { ReactHelpers } from '@vegaprotocol/react-helpers';
|
|
import { useRouter } from 'next/router';
|
|
|
|
export function Index() {
|
|
const router = useRouter();
|
|
console.log(router);
|
|
return (
|
|
<div className={styles.page}>
|
|
<h1>Vega Trading</h1>
|
|
<hr />
|
|
<h2>Test packages</h2>
|
|
<ReactHelpers />
|
|
<EtherscanLink
|
|
text={`Link to TX: 0x6f534dfbd01cb8a9e15493863f4c0ec13bef47ea84152da0674ab0b57f3b4c9c`}
|
|
chainId="0x1"
|
|
tx="0x6f534dfbd01cb8a9e15493863f4c0ec13bef47ea84152da0674ab0b57f3b4c9c"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Index;
|