mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import { useSnapshot } from 'valtio'
|
|
import settings from '../states/settings'
|
|
|
|
function useSettings() {
|
|
const settingsState = useSnapshot(settings)
|
|
return settingsState
|
|
}
|
|
|
|
export default useSettings
|