Skip to content

Commit

Permalink
[REVERT ME] Docs QA
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Jan 22, 2024
1 parent 3003b69 commit e218236
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src-docs/src/views/form_controls/text_area.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ export default () => {
placeholder="Placeholder text"
aria-label="Use aria labels when no actual label is in use"
value={value}
onChange={(e) => onChange(e)}
onChange={(e) => {
console.log('onChange fired');
onChange(e);
}}
/>
</DisplayToggles>
);
Expand Down

0 comments on commit e218236

Please sign in to comment.