vega-frontend-monorepo/apps/trading/pages/index.page.tsx
2022-03-09 16:09:17 -08:00

29 lines
660 B
TypeScript

import { Callout, Button } from '@vegaprotocol/ui-toolkit';
export function Index() {
/*
* Replace the elements below with your own.
*
* Note: The corresponding styles are in the ./index.scss file.
*/
return (
<div className="m-24 ">
<Callout
intent="help"
title="This is what this thing does"
iconName="endorsed"
headingLevel={1}
>
<div className="flex flex-col">
<div>With a longer explaination</div>
<Button className="block mt-8" variant="secondary">
Action
</Button>
</div>
</Callout>
</div>
);
}
export default Index;