how to render a component by clicking in reactjs ?

I want to render a component by clicking? Here's the code I want to display that language component when I click button from that user.jsx and only render language component and disappear that user component Language.jsx
js

import React from 'react';
export function Language({ usedetails }) {
return <h1> Welcome {usedetails} </h1>;
}
js

import React from 'react';
export function Language({ usedetails }) {
return <h1> Welcome {usedetails} </h1>;
}
User.jsx
import React, { useState } from 'react';
import { Language } from './Language';

export function User() {
const [usedetails, setUsedetails] = useState('');

function redirect12() {
<Language usedetails={usedetails}
}

return (
<div>
<input
type='text'
onChange={(e) => setUsedetails(e.target.value)}
/>
<button onClick={redirect12}>Next</button>

</div>
);
}

App.jsx
import React, { useState } from 'react';
import { Language } from './Language';

export function User() {
const [usedetails, setUsedetails] = useState('');

function redirect12() {
<Language usedetails={usedetails}
}

return (
<div>
<input
type='text'
onChange={(e) => setUsedetails(e.target.value)}
/>
<button onClick={redirect12}>Next</button>

</div>
);
}

App.jsx
js import React from 'react'; import { User } from './User'; export function App() { return ( <div> <User /> </div> ); }




26 Replies
vagge_b
vagge_b3mo ago
I can't really unferstand what you are saying but assuming you want to hide the Language comp.when clicling on the button, you can do this: Inside redirect12: const [showLang, setShowLang] = useState(true); In the button: <button onclick={()=>{setShowLang(false)}}>Next</button> And for the Language component, render it conditionally:
vic
vic3mo ago
Oh so I can use ternary operator To display between the components Oh I get it
vagge_b
vagge_b3mo ago
{showLang&&<Language usedetails={usedetails}/>}
vic
vic3mo ago
{ !showLang ? Input details : <Language /> }
vagge_b
vagge_b3mo ago
Yeah Yes exactly
vic
vic3mo ago
Ok thanks
vagge_b
vagge_b3mo ago
And if you have many pages, you can also do this in the button: <button onClick={()=>{setCurrentPage(currentPage+1)}}>Next Page</button>
vic
vic3mo ago
If I in Language component in browser and I click back , will that state change automatically to false ??
vagge_b
vagge_b3mo ago
You mean with the back button?
vic
vic3mo ago
The browser back In chrome
vagge_b
vagge_b3mo ago
No, it will go to the previous url For that you would have to change the url each time you go to a next page
vic
vic3mo ago
Oh I see I get it now
vagge_b
vagge_b3mo ago
It's a quite a bit more complicated
vic
vic3mo ago
But I don't understand this Do u have any articles for this Its an state function and state variable right ? UseState
vagge_b
vagge_b3mo ago
Yeah
vagge_b
vagge_b3mo ago
useState – React
The library for web and native user interfaces
vagge_b
vagge_b3mo ago
(About useState)
vic
vic3mo ago
Alright I Know useState but I don't understand that what u said about multiple pages and And increment+ 1
vagge_b
vagge_b3mo ago
What I meant here is that if in your page you have this: const [currentPage,setCurrentPage] = useState(1); return(<div> {currentPage == 1&& <FirstPage/>} {currentPage == 2&& <SecondPage/>}{currentPage == 3&& <ThirdPage/>} </div>) You can add to yhe currentPage state to change page
vic
vic3mo ago
So I can change the state to 2,3 by using onClicks And the pages will be displayed
vagge_b
vagge_b3mo ago
Yes and then adding one to current value To go to next page
vic
vic3mo ago
Nice I never knew about this
vagge_b
vagge_b3mo ago
And - 1 for previous
vic
vic3mo ago
Yep thanks it would help me
vagge_b
vagge_b3mo ago
But what I said above does not work with browser buttons (the ones on the left of the url) Keep that in mind
vic
vic3mo ago
Sure Yep thanks
Want results from more Discord servers?
Add your server