Skip to content

Commit 726c483

Browse files
remove two errant auto-imports
1 parent d8da41c commit 726c483

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/MDX/test-mdx.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import React from './node_modules/react';
1+
import React from 'react';
22
import slides from './slides.mdx';
33
import Deck from '../../src/components/deck';
44
import Slide from '../../src/components/slide';
55

6-
import { MDXProvider } from './node_modules/@mdx-js/react';
6+
import { MDXProvider } from '@mdx-js/react';
77

88
/*
99
* Note: you can add mappings here to customize how

examples/js/test-js.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from './node_modules/react';
1+
import React from 'react';
22
import Deck from '../../src/components/deck.js';
33
import Slide from '../../src/components/slide.js';
44
import SlideElementWrapper from '../../src/components/slide-element-wrapper';

0 commit comments

Comments
 (0)