mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 23:47:17 +00:00
8 lines
208 B
React
8 lines
208 B
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export const TextInput = function TextInput({ }) {
|
||
|
|
return (
|
||
|
|
<input type="text" class="form-control" placeholder="Text goes here" style={{width: '300px'}} />
|
||
|
|
);
|
||
|
|
};
|