File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { ReactNode } from 'react' ;
2- import styles , { GRID_AREAS } from '../index.styles' ;
3-
4- export { GRID_AREAS } ;
2+ import styles from '../index.styles' ;
53
64interface ActionGridProps {
75 children : ReactNode ;
86}
97
10- export const ActionGrid = ( { children } : ActionGridProps ) => (
8+ const ActionGrid = ( { children } : ActionGridProps ) => (
119 < div css = { styles . actionGrid } > { children } </ div >
1210) ;
11+
12+ export default ActionGrid ;
Original file line number Diff line number Diff line change 1- import { ActionGrid } from './action-grid' ;
1+ import ActionGrid from './action-grid' ;
22import VisuallyHiddenText from '../../../../components/VisuallyHiddenText' ;
33import styles from '../index.styles' ;
44import type { GroupedActions as GroupedActionsType } from '../types' ;
Original file line number Diff line number Diff line change 11// TypeScript component re-exports
22// This ensures TypeScript imports resolve to .tsx files
33
4- export { ActionGrid , GRID_AREAS } from './action-grid' ;
4+ export { default as ActionGrid } from './action-grid' ;
55export { default as Action } from './action' ;
66export { default as ActionsTime } from './actions-time' ;
77export { Actions } from './actions' ;
@@ -10,7 +10,7 @@ export { default as Centre, shouldShowScores } from './centre';
1010export { default as ConditionalOnwardJourneyLink } from './conditional-onward-journey-link' ;
1111export { default as FixtureTime } from './fixture-time' ;
1212export { default as Footer } from './footer' ;
13- export { GroupedEvents } from './grouped-events' ;
13+ export { default as GroupedEvents } from './grouped-events' ;
1414export { HeadToHeadBanner } from './head-to-head-banner' ;
1515export { default as HeadToHeadHeader } from './head-to-head-header' ;
1616export { KeyEvents } from './key-events' ;
You can’t perform that action at this time.
0 commit comments