combiner table
This commit is contained in:
parent
e512ad187d
commit
823432d240
@ -48,6 +48,18 @@ function Vbox(args) {
|
|||||||
</tr>,
|
</tr>,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const combinerElement = (
|
||||||
|
<table className="vbox-table">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>{convertVar(combiner[0])}</td>
|
||||||
|
<td>{convertVar(combiner[1])}</td>
|
||||||
|
<td>{convertVar(combiner[2])}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="three columns">
|
<div className="three columns">
|
||||||
<span>vBox</span>
|
<span>vBox</span>
|
||||||
@ -78,7 +90,7 @@ function Vbox(args) {
|
|||||||
onClick={() => sendVboxCombine()}>
|
onClick={() => sendVboxCombine()}>
|
||||||
combine
|
combine
|
||||||
</button>
|
</button>
|
||||||
{JSON.stringify(vbox)}
|
{combinerElement}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user