Skip to content

Commit

Permalink
fix(ArticleDetail): fix import errors when run build project
Browse files Browse the repository at this point in the history
  • Loading branch information
wlliaml committed Feb 21, 2024
1 parent d8d56f1 commit 84f0d0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/ArticleDetail/Comments/Placeholder/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { CommentBeta } from '~/components'
import CommentBetaPlaceholder from '~/components/CommentBeta/Placeholder'

import styles from './styles.module.css'

export const Placeholder = () => {
return (
<section className={styles.CommentFeed}>
<CommentBeta.Placeholder />
<CommentBeta.Placeholder />
<CommentBetaPlaceholder />
<CommentBetaPlaceholder />
</section>
)
}

0 comments on commit 84f0d0f

Please sign in to comment.