UNPKG

esa-cli

Version:

A CLI for operating Alibaba Cloud ESA EdgeRoutine (Edge Functions).

7 lines (6 loc) 220 B
import * as React from 'react'; import { Text } from 'ink'; function Item({ isSelected = false, label }) { return React.createElement(Text, { color: isSelected ? 'green' : undefined }, label); } export default Item;