File tree Expand file tree Collapse file tree 10 files changed +204
-352
lines changed Expand file tree Collapse file tree 10 files changed +204
-352
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ const PyConKRCommonMDXComponents: MDXComponents = {
139
139
Common__Components__MDX__Map : Common . Components . MDX . Map ,
140
140
Common__Components__MDX__FAQAccordion : Common . Components . MDX . FAQAccordion ,
141
141
Common__Components__MDX__FullWidthStyledButton : Common . Components . MDX . StyledFullWidthButton ,
142
+ Common__Components__Session__List : Common . Components . MDX . SessionList ,
142
143
} ;
143
144
144
145
const PythonKRShopMDXComponents : MDXComponents = {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ const PyConKRCommonMDXComponents: MDXComponents = {
139
139
Common__Components__MDX__Map : Common . Components . MDX . Map ,
140
140
Common__Components__MDX__FAQAccordion : Common . Components . MDX . FAQAccordion ,
141
141
Common__Components__MDX__FullWidthStyledButton : Common . Components . MDX . StyledFullWidthButton ,
142
+ Common__Components__Session__List : Common . Components . MDX . SessionList ,
142
143
} ;
143
144
144
145
const PythonKRShopMDXComponents : MDXComponents = {
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ namespace BackendAPIs {
6
6
export const listSiteMaps = ( client : BackendAPIClient ) => ( ) => client . get < BackendAPISchemas . FlattenedSiteMapSchema [ ] > ( "v1/cms/sitemap/" ) ;
7
7
export const retrievePage = ( client : BackendAPIClient ) => ( id : string ) => client . get < BackendAPISchemas . PageSchema > ( `v1/cms/page/${ id } /` ) ;
8
8
export const listSponsors = ( client : BackendAPIClient ) => ( ) => client . get < BackendAPISchemas . SponsorTierSchema [ ] > ( "v1/event/sponsor/" ) ;
9
+ export const listSessions = ( client : BackendAPIClient ) => ( ) => client . get < BackendAPISchemas . SessionSchema [ ] > ( "v1/event/presentation/" ) ;
9
10
}
10
11
11
12
export default BackendAPIs ;
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import {
19
19
import type { MapPropType as MapComponentPropType } from "./mdx_components/map" ;
20
20
import { Map as MapComponent } from "./mdx_components/map" ;
21
21
import { OneDetailsOpener as OneDetailsOpenerComponent } from "./mdx_components/one_details_opener" ;
22
+ import { SessionList as SessionListComponent } from "./mdx_components/session_list" ;
22
23
import {
23
24
PrimaryStyledDetails as PrimaryStyledDetailsComponent ,
24
25
HighlightedStyledDetails as SecondaryStyledDetailsComponent ,
@@ -49,6 +50,7 @@ namespace Components {
49
50
export const Map = MapComponent ;
50
51
export const FAQAccordion = FAQAccordionComponent ;
51
52
export const OneDetailsOpener = OneDetailsOpenerComponent ;
53
+ export const SessionList = SessionListComponent ;
52
54
export type MapPropType = MapComponentPropType ;
53
55
export type FAQAccordionProps = FAQAccordionPropsType ;
54
56
export type FAQItem = FAQItemType ;
You can’t perform that action at this time.
0 commit comments