{
const circuit = {
qubits: [{ id: 0 }, { id: 1 }],
operations: [
{ gate: 'Prepare', targets: [{ qId: 0 }, { qId: 1 }] },
{ gate: 'H', targets: [{ qId: 0 }] },
{ gate: 'X', isControlled: true, controls: [{ qId: 0 }], targets: [{ qId: 1 }] },
],
};
return render(circuit);
}