daily-examples/custom/pagination/pages/_app.js

12 lines
274 B
JavaScript

import React from 'react';
import App from '@custom/basic-call/pages/_app';
import AppWithPagination from '../components/App';
import Tray from '../components/Tray';
App.customTrayComponent = <Tray />;
App.customAppComponent = <AppWithPagination />;
export default App;