Skip to content

Instantly share code, notes, and snippets.

View MaratBR's full-sized avatar
🦖
Roar!

Marat MaratBR

🦖
Roar!
  • H.O.M.E.
  • Novosibirsk, Russia
View GitHub Profile
@MaratBR
MaratBR / makeTypeCheckerFunctionInReact.js
Created February 12, 2022 11:13
Function that creates type checker function in React (taken from github.com/reactjs/react-tabs)
function makeTypeChecker(tabsRole) {
return (element) => !!element.type && element.type.tabsRole === tabsRole;
}