Yuki Takei 3 лет назад
Родитель
Сommit
65a3e7ad06
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      packages/presentation/src/components/Slide.tsx

+ 4 - 4
packages/presentation/src/components/Slide.tsx

@@ -1,6 +1,6 @@
 import React, { ReactNode } from 'react';
 
-import { Marp } from '@marp-team/marp-core';
+// import { Marp } from '@marp-team/marp-core';
 import Head from 'next/head';
 
 
@@ -9,12 +9,12 @@ type SlidesProps = {
 }
 
 export const Slides = (props: SlidesProps): JSX.Element => {
-  const marp = new Marp();
-  const { css } = marp.render('', { htmlAsArray: true });
+  // const marp = new Marp();
+  // const { css } = marp.render('', { htmlAsArray: true });
   return (
     <>
       <Head>
-        <style>{css}</style>
+        {/* <style>{css}</style> */}
       </Head>
       <div className="marpit">{props.children}</div>
     </>