6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import * as React from 'react';
|
|
|
|
export default React.createContext<((height: number) => void) | undefined>(
|
|
undefined
|
|
);
|