Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11900 | Rev 11904 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11900 Rev 11901
Línea 16... Línea 16...
16
	}, [data])
16
	}, [data])
Línea 17... Línea 17...
17
 
17
 
18
	return (
18
	return (
19
		<div className="user-profile-ov">
19
		<div className="user-profile-ov">
20
			<h3>
20
			<h3>
21
				{parse(title)}
21
				{title}
22
				<button
22
				<button
23
					className="btn btn-degrees-edit"
23
					className="btn btn-degrees-edit"
24
					onClick={() => showModal(title)}
24
					onClick={() => showModal(title)}
25
				>
25
				>
Línea 54... Línea 54...
54
					</ul>
54
					</ul>
55
					:
55
					:
56
					<p>
56
					<p>
57
						{
57
						{
58
							data !== null
58
							data !== null
59
								? data
59
								? parse(data)
60
								: ''
60
								: ''
61
						}
61
						}
62
					</p>
62
					</p>
63
			}
63
			}
64
		</div>
64
		</div>