import React, { useState } from "react"; import styles from "./styles.module.css"; import CloseIcon from "@/app/components/icons/close"; import TextField from "@/app/components/fields/textfield"; import AddIcon from "@/app/components/icons/add"; import PrimaryButton from "@/app/components/buttons/primarybutton/PrimaryButton"; const AddConfigMapModal = (props) => { return (

Config Maps

props.setTriggerAddConfigMap(false)} />

Sub Path

Mount Path

Type

{" "}

Value

} />
); }; export default AddConfigMapModal;