main
Last change
on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago |
Pred finalna verzija
|
-
Property mode
set to
100644
|
File size:
455 bytes
|
Rev | Line | |
---|
[0c6b92a] | 1 | import styles from "../EntranceModal/EntranceModal.module.css";
|
---|
| 2 | import React from "react";
|
---|
| 3 |
|
---|
| 4 | export 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.