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

11 lines
334 B
TypeScript
Raw Normal View History

import { ClientRouter } from './client-router';
/**
* Next only handles this single index page, react-router takes over after the page
* is served to the browser. This is because we can't run next server via ipfs and
* have to serve a static site via next export
*/
export default function Index() {
return <ClientRouter />;
}