Skip to content

Commit

Permalink
cmn3
Browse files Browse the repository at this point in the history
Signed-off-by: mateonunez <mateonunez95@gmail.com>
  • Loading branch information
mateonunez committed Jan 13, 2024
1 parent a3076b3 commit 751283a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/blog/[slug]/page.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';
import s from 'styles/pages/blog/[slug].module.css';
import { default as DefaultArticle, metadata } from 'articles/you-should-use-node-test-act-one.mdx';
import { metadata } from 'articles/you-should-use-node-test-act-one.mdx';
import Article from 'components/articles';

// import { getArticle } from 'lib/articles/parser';
Expand Down Expand Up @@ -56,7 +56,8 @@ export default function BlogArticle({ params }) {
return (
<div className={s.root}>
<Article frontMatter={metadata}>
<DefaultArticle />
{/* <DefaultArticle /> */}
Ciao!
</Article>
</div>
);
Expand Down

0 comments on commit 751283a

Please sign in to comment.