From b50b9a577132ab99b1f3da88b8235f433d34a827 Mon Sep 17 00:00:00 2001 From: Miche Date: Mon, 19 Aug 2024 14:23:44 -0700 Subject: [PATCH] add create account module to develop tab --- website/src/tabs/develop/execute/index.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/src/tabs/develop/execute/index.jsx b/website/src/tabs/develop/execute/index.jsx index bca83527b..79dc02fad 100644 --- a/website/src/tabs/develop/execute/index.jsx +++ b/website/src/tabs/develop/execute/index.jsx @@ -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 } }; @@ -237,6 +238,12 @@ export const Execute = () => { }; return ( + <> + + + +
+ { )} + ); };