We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19fc25d commit b50b9a5Copy full SHA for b50b9a5
website/src/tabs/develop/execute/index.jsx
@@ -17,6 +17,7 @@ import { LoadProgram } from "./LoadProgram.jsx";
17
import { CodeEditor } from "./CodeEditor.jsx";
18
import { useAleoWASM } from "../../../aleo-wasm-hook";
19
import { useEffect, useState } from "react";
20
+import { NewAccount } from "../../account/NewAccount.jsx";
21
22
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 18 } };
23
@@ -237,6 +238,12 @@ export const Execute = () => {
237
238
};
239
240
return (
241
+ <>
242
+
243
+ <NewAccount />
244
245
+ <br/>
246
247
<Card
248
title="Execute Program"
249
extra={
@@ -473,6 +480,7 @@ export const Execute = () => {
473
480
)}
474
481
</Form.Provider>
475
482
</Card>
483
+ </>
476
484
);
477
485
478
486
0 commit comments