mirror of
https://github.com/langgenius/dify.git
synced 2026-08-01 01:49:30 +08:00
7 lines
292 B
TypeScript
7 lines
292 B
TypeScript
import { createLocalStorageState } from 'foxact/create-local-storage-state'
|
|
|
|
const [useHideMaintenanceNotice, _useHideMaintenanceNoticeValue, _useSetHideMaintenanceNotice] =
|
|
createLocalStorageState<string>('hide-maintenance-notice', '0', { raw: true })
|
|
|
|
export { useHideMaintenanceNotice }
|