()
| 28 | export const shaderConfig = atom<ShaderManagerConfig>('shader-config', initialValue) |
| 29 | |
| 30 | export function resetShaderConfig() { |
| 31 | shaderConfig.set(DEFAULT_CONFIG) |
| 32 | } |
| 33 | |
| 34 | react('save to local storage', () => { |
| 35 | localStorage.setItem(STORAGE_KEY, JSON.stringify(shaderConfig.get())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…