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:
557 bytes
|
Line | |
---|
1 | import styles from "../EntranceModal/EntranceModal.module.css";
|
---|
2 |
|
---|
3 | export default function ModalMainEntranceCheckbox ({shapeInfo,updateModalData}){
|
---|
4 | return (
|
---|
5 | <div className={styles.formGroupCheckbox}>
|
---|
6 | <input
|
---|
7 | type="checkbox"
|
---|
8 | id="isMainEntrance"
|
---|
9 | name="isMainEntrance"
|
---|
10 | checked={shapeInfo.isMainEntrance}
|
---|
11 | onChange={updateModalData}
|
---|
12 | />
|
---|
13 | <label htmlFor="isMainEntrance" style={{color: "white"}}>Main Entrance</label>
|
---|
14 | </div>
|
---|
15 | )
|
---|
16 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.