vega-frontend-monorepo/apps/trading/pages/index.page.tsx
Matthew Russell 4899d1bce8
Task/Mark translations (#174)
* add dummy i18n translate function to market text that will need translation in future

* add i18n function to aria-labels
2022-03-30 18:08:25 -07:00

26 lines
613 B
TypeScript

import { Button, Callout, Intent } from '@vegaprotocol/ui-toolkit';
export function Index() {
return (
<div className="m-24">
<div className="mb-24">
<Callout
intent={Intent.Help}
title="Welcome to Vega Trading App"
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>
</div>
);
}
export default Index;