LocChat/client/components/common/input.jsx

4 lines
104 B
React
Raw Normal View History

2021-11-23 16:04:12 -05:00
export const Input = (props) => {
return <input className="border-2 rounded-lg p-1" {...props} />;
};