8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
![]() |
import * as React from "react";
|
||
|
|
||
|
const AppHeaderContext = React.createContext<React.RefObject<HTMLDivElement>>(
|
||
|
undefined
|
||
|
);
|
||
|
|
||
|
export default AppHeaderContext;
|