react tag

24 questions


1 answers
147 views
0
[Type Script] only works as a string??? (Be careful!)

I am studying applying type scripts to the reader toolkit.These are my counter components.import React, {useState} from 'react'import {useAppSelector, useAppDispatch} from '../app/hook'import {decreme...

2 years ago

1 answers
130 views
0
React Tab Menu Implementing Question!

Hello, everyone I'm implementing a tab menu where you can see the content when it's on How can I add code to see the 0th value on the first screen without clicking?I'd really appreciate your help!// c...

2 years ago

1 answers
92 views
0
Toggle Implementation Question

const handleClick = e => { let isOn = e.currentTaget.classList.contains('on'); if (isOn) { e.currentTaget.classList.remove('on'); } } else { e.currentTaget.classList.add('on'); }}Hello!I want to tu...

2 years ago

1 answers
103 views
0
[react] I want to change the number by passing the value through props.

I'd like to change the number value below when I click each button on the same screen as above.The function you want to implement is to change the changeAmount value by reading the changeAmount value ...

2 years ago
« - 3 -

© 2024 OneMinuteCode. All rights reserved.