File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 11// 후대의 개발자님께 : 컴포넌트 맨 첫글자가 대문자로 시작하지 않으면 JSX 컴포넌트가 아니라 일반 HTML 태그로 인식합니다. 제발 대문자로 시작해주세요.
2+ import * as Common from "@frontend/common" ;
23import * as Shop from "@frontend/shop" ;
34import * as mui from "@mui/material" ;
45import type { MDXComponents } from "mdx/types.js" ;
@@ -129,6 +130,10 @@ const MUIMDXComponents: MDXComponents = {
129130 Mui__material__Zoom : mui . Zoom ,
130131} ;
131132
133+ const PyConKRCommonMDXComponents : MDXComponents = {
134+ Common__Components__MDX__Map : Common . Components . MDX . Map ,
135+ } ;
136+
132137const PythonKRShopMDXComponents : MDXComponents = {
133138 Shop__Common__PriceDisplay : Shop . Components . Common . PriceDisplay ,
134139 Shop__Common__SignInGuard : Shop . Components . Common . SignInGuard ,
@@ -141,5 +146,6 @@ const PythonKRShopMDXComponents: MDXComponents = {
141146
142147export const PyConKRMDXComponents = {
143148 ...MUIMDXComponents ,
149+ ...PyConKRCommonMDXComponents ,
144150 ...PythonKRShopMDXComponents ,
145151} ;
Original file line number Diff line number Diff line change 11// 후대의 개발자님께 : 컴포넌트 맨 첫글자가 대문자로 시작하지 않으면 JSX 컴포넌트가 아니라 일반 HTML 태그로 인식합니다. 제발 대문자로 시작해주세요.
2+ import * as Common from "@frontend/common" ;
23import * as Shop from "@frontend/shop" ;
34import * as mui from "@mui/material" ;
45import type { MDXComponents } from "mdx/types.js" ;
@@ -129,6 +130,10 @@ const MUIMDXComponents: MDXComponents = {
129130 Mui__material__Zoom : mui . Zoom ,
130131} ;
131132
133+ const PyConKRCommonMDXComponents : MDXComponents = {
134+ Common__Components__MDX__Map : Common . Components . MDX . Map ,
135+ } ;
136+
132137const PythonKRShopMDXComponents : MDXComponents = {
133138 Shop__Common__PriceDisplay : Shop . Components . Common . PriceDisplay ,
134139 Shop__Common__SignInGuard : Shop . Components . Common . SignInGuard ,
@@ -141,5 +146,6 @@ const PythonKRShopMDXComponents: MDXComponents = {
141146
142147export const PyConKRMDXComponents = {
143148 ...MUIMDXComponents ,
149+ ...PyConKRCommonMDXComponents ,
144150 ...PythonKRShopMDXComponents ,
145151} ;
You can’t perform that action at this time.
0 commit comments