2022-02-23 17:57:44 +00:00
|
|
|
import { EtherscanLink } from '@vegaprotocol/ui-toolkit';
|
|
|
|
import { Callout } from '@vegaprotocol/ui-toolkit';
|
|
|
|
import { ReactHelpers } from '@vegaprotocol/react-helpers';
|
|
|
|
|
|
|
|
export function Index() {
|
|
|
|
/*
|
|
|
|
* Replace the elements below with your own.
|
|
|
|
*
|
|
|
|
* Note: The corresponding styles are in the ./index.scss file.
|
|
|
|
*/
|
2022-02-11 13:56:28 +00:00
|
|
|
return (
|
2022-02-23 17:57:44 +00:00
|
|
|
<div>
|
2022-02-24 02:06:52 +00:00
|
|
|
<Callout title="Hello there" headingLevel={1}>
|
|
|
|
Welcome trading 👋
|
|
|
|
</Callout>
|
|
|
|
<EtherscanLink chainId={null} address="address" />
|
|
|
|
<ReactHelpers />
|
2022-02-11 13:56:28 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2022-02-23 17:57:44 +00:00
|
|
|
|
|
|
|
export default Index;
|