vega-frontend-monorepo/apps/trading/pages/markets/index.page.tsx

12 lines
205 B
TypeScript
Raw Normal View History

2022-03-29 22:52:51 +00:00
import { MarketsContainer } from '@vegaprotocol/market-list';
2022-02-28 23:43:36 +00:00
2022-03-14 15:52:02 +00:00
const Markets = () => {
2022-03-29 22:52:51 +00:00
return <MarketsContainer />;
2022-02-17 05:03:46 +00:00
};
Markets.getInitialProps = () => ({
page: 'markets',
});
export default Markets;