mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import React from "react";
|
|
|
|
const SearchTabContext = React.createContext({
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
focusSearchInputRef: { current: () => {} },
|
|
});
|
|
|
|
export default SearchTabContext;
|