Skip to content

Commit 0e06c6d

Browse files
committed
changed placeholder in HookUpdates
1 parent f560be5 commit 0e06c6d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/components/ReactHooksTestComponent/HookUpdates/HookUpdates.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ const HookUpdates = ({ hookUpdates, index }) => {
9898
type='text'
9999
id='hook'
100100
onChange={(e) => handleChangeHookUpdatesFields(e, 'hook')}
101-
placeholder='e.g. useCounter'
101+
placeholder='e.g. useToggleCount'
102102
/>
103103
</div>
104104
<div id={styles.cb}>
105105
<label htmlFor='hookParams'>Hook Parameters (optional)</label>
106106
<input
107107
type='text'
108108
id='hookParams'
109-
placeholder='eg. 9000, "string"'
109+
placeholder='eg. false, 0'
110110
onChange={(e) => handleChangeHookUpdatesFields(e, 'hookParams')}
111111
/>
112112
</div>

src/components/ReactHooksTestComponent/HooksAssertion.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ const HooksAssertion = ({ assertion, index, id }) => {
108108
<input
109109
type='text'
110110
name='expectedValue'
111-
placeholder='eg. 200'
112111
value={assertion.expectedValue}
113112
onChange={(e) => handleChangeUpdateAssertion(e, 'expectedValue')}
114113
/>

0 commit comments

Comments
 (0)