Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 293 Bytes

File metadata and controls

16 lines (11 loc) · 293 Bytes

react-native-app-helpers/UnderlinedTopTab

Describes the content of an underlined top tab.

Usage

import type { UnderlinedTopTab } from "react-native-app-helpers";

type Tab = `A` | `B` | `C`;

const example: UnderlinedTopTab<Tab> = {
  tab: `B`,
  text: `Example Text`,
};