Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
Local Storage
Simple helpers for managing local storage in your React applications.
1import { getLocalStorage, setLocalStorage } from '@cerberus/react'
Usage
1'use client';2
3import { getLocalStorage } from '@cerberus/react'4import { useState } from 'react'5
6export default function Page() {7 const [value, setValue] = useState<string>('')8
9 // You have to wait until the component is mounted to10 // have access to the local storage11 useEffect(() => {12 const value = getLocalStorage('key')13 setValue(value)14 }, [])15
16 return (17 <Text>18 This is from local storage: {value}19 </Text>20 )21}
API
getLocalStorage
Name | Default | Description |
---|---|---|
key | The key that the value is saved under | |
defaultValue | The default value to return if the key does not exist in localStorage |
setLocalStorage
Name | Default | Description |
---|---|---|
key | The key to save the value under | |
value | The value to save in localStorage |
1import { getLocalStorage, setLocalStorage } from '@cerberus/react'
Usage
1'use client';2
3import { getLocalStorage } from '@cerberus/react'4import { useState } from 'react'5
6export default function Page() {7 const [value, setValue] = useState<string>('')8
9 // You have to wait until the component is mounted to10 // have access to the local storage11 useEffect(() => {12 const value = getLocalStorage('key')13 setValue(value)14 }, [])15
16 return (17 <Text>18 This is from local storage: {value}19 </Text>20 )21}
API
getLocalStorage
Name | Default | Description |
---|---|---|
key | The key that the value is saved under | |
defaultValue | The default value to return if the key does not exist in localStorage |
setLocalStorage
Name | Default | Description |
---|---|---|
key | The key to save the value under | |
value | The value to save in localStorage |