6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
import { createContext } from 'react';
|
|
|
|
const ThemeContext = createContext({});
|
|
|
|
export default ThemeContext;
|