From 8b82f39971535bd25a7568b5bfa6ee31c58c2c2a Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 29 Aug 2024 14:38:39 -0300 Subject: [PATCH] Added custom api generator component on top of the codetabscomponent --- .../src/customization/components/custom-api-generator.tsx | 3 +++ src/frontend/src/modals/apiModal/index.tsx | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 src/frontend/src/customization/components/custom-api-generator.tsx diff --git a/src/frontend/src/customization/components/custom-api-generator.tsx b/src/frontend/src/customization/components/custom-api-generator.tsx new file mode 100644 index 000000000000..d6d6bb6971bf --- /dev/null +++ b/src/frontend/src/customization/components/custom-api-generator.tsx @@ -0,0 +1,3 @@ +export function CustomAPIGenerator() { + return <>; +} diff --git a/src/frontend/src/modals/apiModal/index.tsx b/src/frontend/src/modals/apiModal/index.tsx index e3ebcb86080d..2be3e1ced0c5 100644 --- a/src/frontend/src/modals/apiModal/index.tsx +++ b/src/frontend/src/modals/apiModal/index.tsx @@ -1,3 +1,4 @@ +import { CustomAPIGenerator } from "@/customization/components/custom-api-generator"; import { useCustomAPICode } from "@/customization/hooks/use-custom-api-code"; import useAuthStore from "@/stores/authStore"; import "ace-builds/src-noconflict/ext-language_tools"; @@ -53,6 +54,7 @@ export default function ApiModal({ /> +