-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeetingEvents.js
52 lines (46 loc) · 1.22 KB
/
meetingEvents.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import React, { Component } from 'react'
import { FormGroup, PageHeader, FormControl, ControlLabel, HelpBlock } from 'react-bootstrap'
export default class MeetingEvents extends Component {
static get id () {
return 'page_meeting_events'
}
static get title () {
return 'Meeting events'
}
static get href () {
return '/meeting-events'
}
static get propTypes () {
return {}
}
handleChange () {
console.log('inside on change')
}
render () {
return (
<div>
<div className='head'>
<PageHeader>
<small>Meetings</small>
</PageHeader>
</div>
<div className='tail'>
<form>
<FormGroup
controlId='formBasicText'
validationState={null} >
<ControlLabel>Working example with validation</ControlLabel>
<FormControl
type='text'
value='sample value'
placeholder='Enter text'
onChange={this.handleChange.bind(this)} />
<FormControl.Feedback />
<HelpBlock>Validation is based on string length.</HelpBlock>
</FormGroup>
</form>
</div>
</div>
)
}
}