6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const SettingsContext = createContext(null);
|
|
|
|
export default SettingsContext;
|