ef18ac8483
* Initial commit after nx create * Add .env files * Add working commit for poc * Make deal-ticket-manager.tsx accept children as props and export more components to be consumed by external apps * Add stepper component to simple trading app * Add basic prototype for simple trading app with stepper component * simple market app - simple market list - initial commit * simple market app - simple market list - add some new changes * Resolve conflicts after rebase Initial commit after nx create * Add stepper component to simple trading app * simple market app - simple market list - remove wrongly added file after rebase * simple market app - simple market list - proposals of layout frame and percent change calculation * simple market app - simple market list - proposals of working solution * feat: [simple-app] - simple market list - clean up gQL queries * feat: [simple-app] - simple market list - indicate no auctionEnd * feat: [simple-app] - simple market list - a bunch of changes after review feedback * feat: [simple-app] - simple market list - get expire date from instrument tag * feat: [simple-app] - simple market list - a bunch of small improvements Co-authored-by: Elmar Gasimov <elmar@vegaprotocol.io> Co-authored-by: maciek <maciek@vegaprotocol.io>
15 lines
359 B
HTML
15 lines
359 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Simple Trading App</title>
|
|
<base href="/" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
</head>
|
|
<body>
|
|
<div id="root" class="h-full max-h-full"></div>
|
|
</body>
|
|
</html>
|