am-editor11212/examples/react/context.ts

10 lines
132 B
TypeScript

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