mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
import dynamic from 'next/dynamic'
|
|
|
|
const MusicPlayer = dynamic(
|
|
() => import('@/components/Player'),
|
|
{ ssr: false }
|
|
)
|
|
export default MusicPlayer
|