Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 6050 Rev 6309
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
-
 
2
import WebPageModal from './WebPageModal'
-
 
3
 
-
 
4
const WebPage = ({ website, websiteUrl }) => {
-
 
5
 
-
 
6
    const [isShowModal, setIsShowModal] = useState(false);
-
 
7
    const [websiteState, setWebsiteState] = useState(website);
-
 
8
 
-
 
9
    const closeModal = () => setIsShowModal(false)
-
 
10
    const showModal = () => setIsShowModal(true)
Línea 2... Línea -...
2
 
-
 
Línea 3... Línea 11...
3
const WebPage = ({ website }) => {
11
 
-
 
12
 
4
 
13
    return (
5
    return (
14
        <>
6
        <div className="user-profile-ov">
15
            <div className="user-profile-ov">
-
 
16
                <h3>
7
            <h3>
17
                    Página web
-
 
18
                    <button
-
 
19
                        className="btn btn-website-edit"
8
                Página web
20
                        onClick={showModal}
9
                <button className="btn btn-website-edit">
21
                    >
10
                    <i className="fa fa-pencil" />
22
                        <i className="fa fa-pencil" />
11
                </button>
23
                    </button>
12
            </h3>
24
                </h3>
13
            <span id="overview-website">
25
                <span id="overview-website">
-
 
26
                    {websiteState}
-
 
27
                </span>
-
 
28
            </div>
-
 
29
            <WebPageModal
-
 
30
                isOpen={isShowModal}
-
 
31
                websiteUrl={websiteUrl}
-
 
32
                closeModal={closeModal}
14
                {website}
33
                action={setWebsiteState}
15
            </span>
34
            />
16
        </div>
35
        </>
Línea 17... Línea 36...
17
    )
36
    )
18
}
37
}