@bkwld/next-client-only
v0.1.0
Published
Next.js utility component to render children on client-side only
Downloads
1
Keywords
Readme
Next Client Only
Render components on client-side only. Usage:
import { ClientOnly } from '@bkwld/next-client-only'
export default MyComponent = () => {
return (
<ClientOnly>
<div>This will not be a part of the server side renderd template</div>
</ClientOnly>
)
}