An open API service indexing awesome lists of open source software.

https://github.com/bkwld/next-client-only

Next.js utility component to render children on client-side only
https://github.com/bkwld/next-client-only

Last synced: over 1 year ago
JSON representation

Next.js utility component to render children on client-side only

Awesome Lists containing this project

README

          

# Next Client Only

Render components on client-side only. Usage:

```ts
import { ClientOnly } from '@bkwld/next-client-only'

export default MyComponent = () => {
return (

This will not be a part of the server side renderd template


)
}
```