Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 305 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 305 Bytes

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>
    )
}