Skip to content

Instantly share code, notes, and snippets.

@jmlavoier
Created December 22, 2017 22:16
Show Gist options
  • Save jmlavoier/b7df90a9843e016ac9f20b651a78b624 to your computer and use it in GitHub Desktop.
Save jmlavoier/b7df90a9843e016ac9f20b651a78b624 to your computer and use it in GitHub Desktop.
It's a dumb component
// Textarea.js
import React from 'react';
export const TextareaField = ({
value,
name,
style,
onChange,
}) => (
<div>
<textarea
style={style}
value={value}
name={name}
onChange={onChange}
/>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment