File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 3939 < meta name ="robots " content ="index, follow " />
4040
4141 < script src ="https://cdn.iamport.kr/v1/iamport.js "> </ script >
42- < link rel ="stylesheet " href ="github-markdown.css ">
42+ < link rel ="stylesheet " href ="github-markdown.css ">
4343
4444 < title > PyCon Korea 2025</ title >
4545 </ head >
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ import { CircularProgress } from '@mui/material';
66import { ErrorBoundary , Suspense } from '@suspensive/react' ;
77
88import styled from '@emotion/styled' ;
9- import Components from '../components' ;
109import Hooks from "../hooks" ;
1110import Schemas from "../schemas" ;
1211import Utils from '../utils' ;
12+ import { ErrorFallback } from './error_handler' ;
13+ import { MDXRenderer } from './mdx' ;
1314
1415const InitialPageStyle : React . CSSProperties = {
1516 width : '100%' ,
@@ -31,7 +32,7 @@ export const PageRenderer: React.FC<{ id: string }> = ({ id }) => {
3132 {
3233 data . sections . map (
3334 ( s ) => < div style = { { ...InitialSectionStyle , ...Utils . parseCss ( s . css ) } } key = { s . id } >
34- < Components . MDXRenderer text = { s . body } />
35+ < MDXRenderer text = { s . body } />
3536 </ div >
3637 )
3738 }
@@ -71,7 +72,7 @@ const FullPage = styled.div`
7172`
7273
7374export const DynamicRoutePage : React . FC = ( ) => < FullPage >
74- < ErrorBoundary fallback = { Components . ErrorFallback } >
75+ < ErrorBoundary fallback = { ErrorFallback } >
7576 < Suspense fallback = { < CircularProgress /> } >
7677 < AsyncDynamicRoutePage />
7778 </ Suspense >
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "target" : " ES2019 " ,
3+ "target" : " ES2021 " ,
44 "module" : " ESNext" ,
55 "moduleResolution" : " node" ,
66 "declaration" : true ,
You can’t perform that action at this time.
0 commit comments