@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
11 lines (10 loc) • 304 B
TypeScript
import { FunctionComponent } from 'react';
interface UserInputProps {
userInput: string;
}
/**
* `UserInput` displays some text that represents input from the user.
* For example an answer to a selection prompt.
*/
declare const UserInput: FunctionComponent<UserInputProps>;
export { UserInput };