mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
16 lines
323 B
JavaScript
16 lines
323 B
JavaScript
import { useEffect } from 'react'
|
|
import { loadExternalResource } from '@/lib/utils'
|
|
|
|
const StarrySky = () => {
|
|
useEffect(() => {
|
|
loadExternalResource('/js/starrySky.js', 'js').then(url => {
|
|
window.renderStarrySky && window.renderStarrySky()
|
|
})
|
|
}, [])
|
|
return (
|
|
<></>
|
|
)
|
|
}
|
|
|
|
export default StarrySky
|