UNPKG

esa-cli

Version:

A CLI for operating Alibaba Cloud ESA Functions and Pages.

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