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 { useState } from 'react'
2- import { Feed } from 'src/features/feed'
32import { DesktopBreakpoint } from 'src/providers/DesktopBreakpoint'
43import { MobileBreakpoint } from 'src/providers/MobileBreakpoint'
54import { useUserPreferences } from 'src/stores/preferences'
5+ import { lazyImport } from 'src/utils/lazyImport'
66import { BottomNavigation } from '../Elements'
77import { DesktopCards } from './DesktopCards'
88import { MobileCards } from './MobileCards'
99import { ScrollCardsNavigator } from './ScrollCardsNavigator'
10+ const { Feed } = lazyImport ( ( ) => import ( 'src/features/feed' ) , 'Feed' )
1011
1112export const AppContentLayout = ( ) => {
1213 const { cards, userCustomCards, layout } = useUserPreferences ( )
@@ -32,7 +33,6 @@ export const AppContentLayout = () => {
3233 </ >
3334 ) }
3435 </ main >
35-
3636 </ >
3737 )
3838}
You can’t perform that action at this time.
0 commit comments