10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
|
import { createContext } from 'react';
|
||
|
|
||
|
type Props = {
|
||
|
lang: string;
|
||
|
};
|
||
|
|
||
|
export default createContext<Props>({
|
||
|
lang: 'en-US',
|
||
|
});
|