UNPKG

quickstruc

Version:

quickstruc is a Node.js-powered module designed to streamline project scaffolding.

16 lines (14 loc) 350 B
import React from "react"; function Input({ text, tailwindProperty, placeholder, onChanges, value }) { return ( <div className="w-full h-full"> <input className={tailwindProperty} placeholder={placeholder} onChange={onChanges} value={value} /> </div> ); } export default Input;