7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const SettingsContext = createContext(<settings>{
|
|
bgBlur: true
|
|
});
|
|
export const SettingsDispatchContext = createContext(null);
|