mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
add classNames to inputs
This commit is contained in:
@@ -4,7 +4,10 @@ export default function(props) {
|
||||
return (
|
||||
<label>
|
||||
{props.text}:
|
||||
<textarea onchange={props.onchange.bind(null, props.name)} />
|
||||
<textarea
|
||||
class={props.name}
|
||||
onchange={props.onchange.bind(null, props.name)}
|
||||
/>
|
||||
</label>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user