source: imaps-frontend/src/components/Modals/Components/ModalSaveButton.jsx

main
Last change on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 455 bytes
Line 
1import styles from "../EntranceModal/EntranceModal.module.css";
2import React from "react";
3
4export default function ModalSaveButton({saveDetails}){
5 return (
6 <div className={styles.formGroup}>
7 <button
8 type="button"
9 id="submit-details"
10 onClick={saveDetails}
11 className={styles.submitButton}
12 >
13 Save
14 </button>
15 </div>
16 )
17}
Note: See TracBrowser for help on using the repository browser.