File size: 588 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
The hook which allows you to store particular data into local storage.

It works very similar to `useState` with the exception that it requires the key under which data
will be stored.

### Usage

```javascript
import { useLocalStorage } from 'adminjs'

const MyRecordActionComponent = (props) => {
  const [isOpen, setIsOpen] = useLocalStorage('isSidebarOpen', false)
  // ....

  return (
    <Box>
      { isOpen ? (
        <Drawer>
          Drawer content
        </Drawer>
      ) : ''}
    </Box>
  )
}
export default MyRecordActionComponent
```

Returns {@link UseRecordResult}.