src/app/routes/homePage/index.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import { HomePage } from '#pages';
import { homePagePath, tipoHomePath } from '#app/routes/utils/regex';
import { HOME_PAGE } from '#app/routes/utils/pageTypes';
import getInitialData from './getInitialData';

export default {
  path: [homePagePath, tipoHomePath],
  exact: true,
  component: HomePage,
  getInitialData,
  pageType: HOME_PAGE,
};