ahbeng/NUSMods

View on GitHub
website/src/views/venues/VenueLocation/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import retryImport from 'utils/retryImport';
import withVenueLocations from 'views/components/map/withVenueLocations';
import { Props } from './VenueLocation';

export default withVenueLocations<Props>(() =>
  retryImport(() => import(/* webpackChunkName: "venue" */ './VenueLocation')).then(
    (module) => module.default,
  ),
);