Remove mdx-embed to fix build

This commit is contained in:
Hazem Krimi
2023-03-19 00:54:54 +01:00
parent d8c97a2df5
commit b82f90db48
8 changed files with 7 additions and 16 deletions
Vendored
+14
View File
@@ -0,0 +1,14 @@
declare module '@mdx-js/react' {
import * as React from 'react';
export type Components = {
[key]?: React.ComponentType<any>;
};
export interface MDXProviderProps {
children: React.ReactNode;
components?: Components;
}
export class MDXProvider extends React.Component<MDXProviderProps> {}
}