Skip to content

Commit

Permalink
add create account module to develop tab
Browse files Browse the repository at this point in the history
  • Loading branch information
michellewong793 committed Aug 19, 2024
1 parent 19fc25d commit b50b9a5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions website/src/tabs/develop/execute/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { LoadProgram } from "./LoadProgram.jsx";
import { CodeEditor } from "./CodeEditor.jsx";
import { useAleoWASM } from "../../../aleo-wasm-hook";
import { useEffect, useState } from "react";
import { NewAccount } from "../../account/NewAccount.jsx";

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

Expand Down Expand Up @@ -237,6 +238,12 @@ export const Execute = () => {
};

return (
<>

<NewAccount />

<br/>

<Card
title="Execute Program"
extra={
Expand Down Expand Up @@ -473,6 +480,7 @@ export const Execute = () => {
)}
</Form.Provider>
</Card>
</>
);
};

Expand Down

0 comments on commit b50b9a5

Please sign in to comment.