Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15267 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15267 Rev 15279
Línea 1... Línea 1...
1
import axios from 'axios'
1
import axios from 'axios'
2
import React, { useEffect } from 'react'
2
import React, { useEffect } from 'react'
3
import { Modal, Button } from 'react-bootstrap'
3
import { Modal } from 'react-bootstrap'
4
import { useForm } from 'react-hook-form'
4
import { useForm } from 'react-hook-form'
5
import { CKEditor } from 'ckeditor4-react'
5
import { CKEditor } from 'ckeditor4-react'
6
import { addNotification } from '../../../redux/notification/notification.actions'
6
import { addNotification } from '../../../redux/notification/notification.actions'
7
import { useDispatch } from 'react-redux'
7
import { useDispatch } from 'react-redux'
Línea 89... Línea 89...
89
							name="description"
89
							name="description"
90
						/>
90
						/>
91
					</div>
91
					</div>
92
				</Modal.Body>
92
				</Modal.Body>
93
				<Modal.Footer>
93
				<Modal.Footer>
94
					<Button
94
					<button
95
						variant="primary"
95
						className="btn btn-primary"
96
						type="submit"
96
						type="submit"
97
					>
97
					>
98
						Enviar
98
						Enviar
99
					</Button>
99
					</button>
-
 
100
					<button
100
					<Button className='btn-tertiary' onClick={closeModal}>
101
						className='btn btn-tertiary'
-
 
102
						onClick={closeModal}
-
 
103
					>
101
						Cancelar
104
						Cancelar
102
					</Button>
105
					</button>
103
				</Modal.Footer>
106
				</Modal.Footer>
104
			</form>
107
			</form>
105
		</Modal >
108
		</Modal >
106
	)
109
	)
107
}
110
}