Fix compilation error

This commit is contained in:
Austin Chen 2022-03-02 23:37:39 -08:00
parent 4189bf4ec8
commit 0aa262a2bf

View File

@ -9,5 +9,5 @@ export function ClientRender(props: { children: React.ReactNode }) {
setMounted(true)
}, [])
return mounted ? children : null
return mounted ? <>{children}</> : null
}