Skip to content

Commit cc6cef0

Browse files
authored
Add editions crosswords to pages router (#14095)
1 parent 96b7e23 commit cc6cef0

File tree

1 file changed

+5
-0
lines changed
  • dotcom-rendering/src/devServer/routers

1 file changed

+5
-0
lines changed

dotcom-rendering/src/devServer/routers/pages.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Router } from 'express';
22
import { Article } from '../docs/article';
33
import { CricketScorecard } from '../docs/cricketScorecard';
4+
import { EditionsCrosswords } from '../docs/editionsCrosswords';
45
import { FootballFixtures } from '../docs/footballFixtures';
56
import { FootballLive } from '../docs/footballLive';
67
import { FootballMatchSummary } from '../docs/footballMatchSummary';
@@ -21,6 +22,10 @@ pages.get('/front', sendReact('Front', Front));
2122
pages.get('/tag-page', sendReact('Tag Page', TagPage));
2223
pages.get('/interactive', sendReact('Interactive', Interactive));
2324
pages.get('/newsletters', sendReact('All Newsletters', Newsletters));
25+
pages.get(
26+
'/editions-crosswords',
27+
sendReact('Editions Crosswords', EditionsCrosswords),
28+
);
2429
pages.get('/football-live', sendReact('Football Live', FootballLive));
2530
pages.get(
2631
'/football-fixtures',

0 commit comments

Comments
 (0)