File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ import Button from '@material-ui/core/Button';
12
12
import Tooltip from '@material-ui/core/Tooltip' ;
13
13
import Switch from '@material-ui/core/Switch' ; // for state toggling
14
14
import InputLabel from '@material-ui/core/InputLabel' ; // labeling of state/class toggles
15
+ import Select from '@material-ui/core/Select' ; // for Class/Functional drop down
16
+ import MenuItem from '@material-ui/core/MenuItem' ; // for drop down item selections
15
17
16
18
// import { ComponentInt, ComponentsInt, ChildInt } from '../utils/Interfaces'; // unused
17
19
@@ -86,6 +88,36 @@ const LeftColExpansionPanel = (props: any) => {
86
88
color = 'primary'
87
89
id = 'stateful'
88
90
/>
91
+ < div >
92
+ < InputLabel
93
+ id = 'label'
94
+ style = { {
95
+ color : '#fff' ,
96
+ marginBottom : '10px' ,
97
+ marginTop : '0px' ,
98
+ marginLeft : '11px' ,
99
+ padding : '0px' ,
100
+ fontSize : '18px'
101
+ } }
102
+ >
103
+ Component Type
104
+ </ InputLabel >
105
+ < Select
106
+ id = 'select'
107
+ value = 'class'
108
+ style = { {
109
+ color : '#fff' ,
110
+ marginBottom : '10px' ,
111
+ marginTop : '0px' ,
112
+ marginLeft : '11px' ,
113
+ padding : '0px' ,
114
+ fontSize : '18px'
115
+ } }
116
+ >
117
+ < MenuItem value = 'class' > Class</ MenuItem >
118
+ < MenuItem value = 'functional' > Functional</ MenuItem >
119
+ </ Select >
120
+ </ div >
89
121
</ div >
90
122
}
91
123
style = { { color } }
You can’t perform that action at this time.
0 commit comments