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:
500 bytes
|
Rev | Line | |
---|
[0c6b92a] | 1 | import styles from "../EntranceModal/EntranceModal.module.css";
|
---|
| 2 |
|
---|
| 3 | export default function ModalDescriptionField({shapeInfo,updateModalData}){
|
---|
| 4 | return (
|
---|
| 5 | <div className={styles.formGroup}>
|
---|
| 6 | <label htmlFor="description">Description:</label>
|
---|
| 7 | <textarea
|
---|
| 8 | id="description"
|
---|
| 9 | name="description"
|
---|
| 10 | value={shapeInfo.description}
|
---|
| 11 | onChange={updateModalData}
|
---|
| 12 | rows="3"
|
---|
| 13 | />
|
---|
| 14 | </div>
|
---|
| 15 | )
|
---|
| 16 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.