@rooks/use-isomorphic-effect
Version:
Resolves to useEffect when window is not in scope and useLayout effect in the browser
54 lines (33 loc) • 1.45 kB
Markdown
# @rooks/use-isomorphic-effect
## *Note: Future updates to this package have moved to the main package* [rooks](https://npmjs.com/package/rooks). All hooks now reside in a single package which you can install using
```
npm install rooks
```
or
```
yarn add rooks
```
Rooks is completely treeshakeable and if you use only 1 of the 50+ hooks in the package, only that hook will be bundled with your code. Your bundle will only contain the hooks that you need. Cheers!

[](https://travis-ci.org/imbhargav5/rooks)    
## About
A hook that resolves to useEffect on the server and useLayoutEffect on the client.
[//]: # (Main)
## Installation
```
npm install --save @rooks/use-isomorphic-effect
```
## Importing the hook
```javascript
import useIsomorphicEffect from "@rooks/use-isomorphic-effect"
```
## Usage
```jsx
function Demo() {
useIsomorphicEffect( () => {
console.log("Effect")
} ,[]);
return null
}
render(<Demo/>)
```