Skip to content

Commit b50b9a5

Browse files
add create account module to develop tab
1 parent 19fc25d commit b50b9a5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

website/src/tabs/develop/execute/index.jsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { LoadProgram } from "./LoadProgram.jsx";
1717
import { CodeEditor } from "./CodeEditor.jsx";
1818
import { useAleoWASM } from "../../../aleo-wasm-hook";
1919
import { useEffect, useState } from "react";
20+
import { NewAccount } from "../../account/NewAccount.jsx";
2021

2122
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 18 } };
2223

@@ -237,6 +238,12 @@ export const Execute = () => {
237238
};
238239

239240
return (
241+
<>
242+
243+
<NewAccount />
244+
245+
<br/>
246+
240247
<Card
241248
title="Execute Program"
242249
extra={
@@ -473,6 +480,7 @@ export const Execute = () => {
473480
)}
474481
</Form.Provider>
475482
</Card>
483+
</>
476484
);
477485
};
478486

0 commit comments

Comments
 (0)