src/app/routes/onDemandTV/index.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import { OnDemandTvPage } from '#pages';
import { onDemandTvPath } from '#app/routes/utils/regex';
import { MEDIA_PAGE } from '#app/routes/utils/pageTypes';
import getInitialData from './getInitialData';

export default {
  path: onDemandTvPath,
  exact: true,
  component: OnDemandTvPage,
  getInitialData,
  pageType: MEDIA_PAGE,
};