@yeji0214/modal
Version:
모달 컴포넌트
10 lines (9 loc) • 317 B
TypeScript
type InputProps = {
title: string;
value: string;
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
name?: string;
placeholder?: string;
};
declare const Input: ({ title, value, onChange, name, placeholder }: InputProps) => import("react/jsx-runtime").JSX.Element;
export default Input;