File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import Badge from './components/Badge/Badge';
22import LinkComponent from './components/mdxComponents/Link' ;
33import StackBlitzPreview from './components/StackBlitzPreview/StackBlitzPreview' ;
44import CodeBlockWithCopy from './components/CodeBlockWithCopy/CodeBlockWithCopy' ;
5- import * as ConfigComponents from './components/Configuration/components' ;
65
76/** @returns {import('mdx/types.js').MDXComponents } */
87export function useMDXComponents ( ) {
@@ -11,9 +10,5 @@ export function useMDXComponents() {
1110 Badge : Badge ,
1211 StackBlitzPreview : StackBlitzPreview ,
1312 pre : CodeBlockWithCopy ,
14- Mode : ConfigComponents . Mode ,
15- Node : ConfigComponents . Node ,
16- W : ConfigComponents . W ,
17- I : ConfigComponents . I ,
1813 } ;
1914}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export default (locals) => {
2626 < Site
2727 // note that here we use require instead of import
2828 // i.e., can't reuse App.jsx
29- import = { ( path ) => require ( `./content/${ path } ` ) . default }
29+ import = { ( path ) => require ( `./content/${ path } ` ) }
3030 />
3131 </ div >
3232 { isPrintPage ( locals . path ) ? (
You can’t perform that action at this time.
0 commit comments