ToolJet/frontend/src/Editor/Components/TextInput.jsx

8 lines
208 B
React
Raw Normal View History

import React from 'react';
export const TextInput = function TextInput({ }) {
return (
<input type="text" class="form-control" placeholder="Text goes here" style={{width: '300px'}} />
);
};