python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Components Microservices
For a few days I'm dealing with different architecture patterns. In particular, I want to better understand the microservice architecture. I understand the basic structure, but what I haven't quite fi...
darkcloud
Votes: 0
Answers: 1
NextJS access a variable from another component
I have a variable in a component. And I want to be able to access this variable in another component.
I use NextJS.
How can I do ?
code :
Component/Question.js
import { useState } from "react&quo...
Théo
Votes: 0
Answers: 3
Call method from parent to child via component
I have a Two components
1)Job.jsx -parent
2)Jobmodel.jsx -child
So I have a method in job.jsx
const [joblist, SetJoblist] = useState([]);
const loadJobs = async () => {
const res = awai...

Shanu k k
Votes: 0
Answers: 1
How to pass controls in parent component sent from child component?
https://stackblitz.com/edit/child-component-ki8tvu?file=app%2Fchild.component.ts,
check my code here
app.component.html:
<div [formGroup]="myform">
<h1>Good bye</h1>
&...
Parul
Votes: 0
Answers: 1