19 |
20 |
21 |
22 |
23 |
24 |
27 |
28 | >
29 | )
30 | }
31 |
32 | export default About
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
2 | Contribution Agreement
3 | ======================
4 |
5 | This repository does not accept pull requests (PRs). All pull requests will be closed.
6 |
7 | However, if any contributions (through pull requests, issues, feedback or otherwise) are provided, as a contributor, you represent that the code you submit is your original work or that of your employer (in which case you represent you have the right to bind your employer). By submitting code (or otherwise providing feedback), you (and, if applicable, your employer) are licensing the submitted code (and/or feedback) to LinkedIn and the open source community subject to the BSD 2-Clause license.
8 |
--------------------------------------------------------------------------------
/05-gestion de estado y carga de datos/Manejo de Estados y carga de datos/src/components/ItemCarrito.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | function ItemCarrito({producto,onClick}) {
4 | return (
5 | <>
6 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
7 | >
8 | )
9 | }
10 |
11 | export default Contents
--------------------------------------------------------------------------------
/05-gestion de estado y carga de datos/Manejo de Estados y carga de datos/src/App.jsx:
--------------------------------------------------------------------------------
1 |
2 |
3 | import React, { useState, useEffect, createContext } from 'react';
4 | import './App.css';
5 |
6 |
7 | import ListaProductos from './components/ListaProductos';
8 | import ListaCarrito from './components/ListaCarrito';
9 | import { DataProvider } from './components/DataContext';
10 |
11 |
12 | function App() {
13 |
14 |
15 | return (
16 | <>
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | >
29 |
30 | )
31 | }
32 |
33 | export default App
34 |
--------------------------------------------------------------------------------
/05-gestion de estado y carga de datos/Manejo de Estados y carga de datos/src/components/Producto.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | function Producto({producto}) {
4 | return (
5 | <>
6 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 | )
44 | }
45 |
46 | export default App
47 |
--------------------------------------------------------------------------------
/05-gestion de estado y carga de datos/Manejo de Estados y carga de datos/public/productos.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": 1,
4 | "nombre": "Smartphone",
5 | "precio": 599.99,
6 | "descripcion": "Lorem ipsum dolor sit amet, consectetur adipiscing elit",
7 | "status":"selected"
8 | },
9 | {
10 | "id": 2,
11 | "nombre": "Laptop",
12 | "precio": 999.00,
13 | "descripcion": "Lorem ipsum dolor sit amet, consectetur adipiscing elit aute irure reprehenderit"
14 | },
15 | {
16 | "id": 3,
17 | "nombre": "SmartTV",
18 | "precio": 349.50,
19 | "descripcion": "Lorem ipsum dolor sit amet, aute irure dolor in reprehenderit consectetur adipiscing elit"
20 | },
21 | {
22 | "id": 4,
23 | "nombre": "Altavoces",
24 | "precio": 89.95,
25 | "descripcion": "Lorem ipsum dolor sit amet, consectetur aute irure dolor in reprehenderitadipiscing elit"
26 | },
27 | {
28 | "id": 5,
29 | "nombre": "Tablet",
30 | "precio": 899.00,
31 | "descripcion": "Lorem ipsum dolor sit amet, aute irure dolor in reprehenderit aute irure dolor in reprehenderit"
32 | },
33 | {
34 | "id": 6,
35 | "nombre": "Audífonos",
36 | "precio": 79.99,
37 | "descripcion": "Lorem ipsum dolor sit amet, aute irure dolor in reprehenderit, consectetur adipiscing elit"
38 | }
39 | ]
--------------------------------------------------------------------------------
/07-Enrutamiento/Manejo de rutas/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/01-Fundamentos de React/componentes y propiedades/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/04-Listas y estructuras de datos/Listas en react/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/02-Construccion de componentes/componentes en React/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/03-Gestion de eventos y formularios/manejo de Formularios/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/05-gestion de estado y carga de datos/Manejo de Estados y carga de datos/src/components/ListaProductos.jsx:
--------------------------------------------------------------------------------
1 | import React, { useContext } from 'react'
2 | import { DataContext } from './DataContext'
3 |
4 |
5 |
6 | function ListaProductos() {
7 |
8 | const { data, setData } = useContext(DataContext)
9 |
10 | const manejarClick = (event)=>{
11 | const id = event.id;
12 | setData(prevData => prevData.map(item =>
13 | item.id === id ? { ...item, status: 'selected' } : item
14 | ));
15 | }
16 |
17 | return (
18 |
19 |
Productos
20 |
21 |
22 | {data.map(producto => (
23 |
24 |
25 |
26 |
27 |
{producto.nombre}
28 |
${producto.precio}
29 |
32 |
33 |
34 |
35 |
36 | ))}
37 |
38 |
39 |
40 | )
41 | }
42 |
43 | export default ListaProductos
--------------------------------------------------------------------------------
/06-gestion de Interfaz de usuario/Gestion de interfases en React/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/01-Fundamentos de React/componentes y propiedades/src/index.css:
--------------------------------------------------------------------------------
1 | :root {
2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3 | line-height: 1.5;
4 | font-weight: 400;
5 |
6 | color-scheme: light dark;
7 | color: rgba(255, 255, 255, 0.87);
8 | background-color: #242424;
9 |
10 | font-synthesis: none;
11 | text-rendering: optimizeLegibility;
12 | -webkit-font-smoothing: antialiased;
13 | -moz-osx-font-smoothing: grayscale;
14 | -webkit-text-size-adjust: 100%;
15 | }
16 |
17 | a {
18 | font-weight: 500;
19 | color: #646cff;
20 | text-decoration: inherit;
21 | }
22 | a:hover {
23 | color: #535bf2;
24 | }
25 |
26 | body {
27 | margin: 0;
28 | display: flex;
29 | place-items: center;
30 | min-width: 320px;
31 | min-height: 100vh;
32 | }
33 |
34 | h1 {
35 | font-size: 3.2em;
36 | line-height: 1.1;
37 | }
38 |
39 | button {
40 | border-radius: 8px;
41 | border: 1px solid transparent;
42 | padding: 0.6em 1.2em;
43 | font-size: 1em;
44 | font-weight: 500;
45 | font-family: inherit;
46 | background-color: #1a1a1a;
47 | cursor: pointer;
48 | transition: border-color 0.25s;
49 | }
50 | button:hover {
51 | border-color: #646cff;
52 | }
53 | button:focus,
54 | button:focus-visible {
55 | outline: 4px auto -webkit-focus-ring-color;
56 | }
57 |
58 | @media (prefers-color-scheme: light) {
59 | :root {
60 | color: #213547;
61 | background-color: #ffffff;
62 | }
63 | a:hover {
64 | color: #747bff;
65 | }
66 | button {
67 | background-color: #f9f9f9;
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/02-Construccion de componentes/componentes en React/src/index.css:
--------------------------------------------------------------------------------
1 | :root {
2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3 | line-height: 1.5;
4 | font-weight: 400;
5 |
6 | color-scheme: light dark;
7 | color: rgba(255, 255, 255, 0.87);
8 | background-color: #242424;
9 |
10 | font-synthesis: none;
11 | text-rendering: optimizeLegibility;
12 | -webkit-font-smoothing: antialiased;
13 | -moz-osx-font-smoothing: grayscale;
14 | -webkit-text-size-adjust: 100%;
15 | }
16 |
17 | a {
18 | font-weight: 500;
19 | color: #646cff;
20 | text-decoration: inherit;
21 | }
22 | a:hover {
23 | color: #535bf2;
24 | }
25 |
26 | body {
27 | margin: 0;
28 | display: flex;
29 | place-items: center;
30 | min-width: 320px;
31 | min-height: 100vh;
32 | }
33 |
34 | h1 {
35 | font-size: 3.2em;
36 | line-height: 1.1;
37 | }
38 |
39 | button {
40 | border-radius: 8px;
41 | border: 1px solid transparent;
42 | padding: 0.6em 1.2em;
43 | font-size: 1em;
44 | font-weight: 500;
45 | font-family: inherit;
46 | background-color: #1a1a1a;
47 | cursor: pointer;
48 | transition: border-color 0.25s;
49 | }
50 | button:hover {
51 | border-color: #646cff;
52 | }
53 | button:focus,
54 | button:focus-visible {
55 | outline: 4px auto -webkit-focus-ring-color;
56 | }
57 |
58 | @media (prefers-color-scheme: light) {
59 | :root {
60 | color: #213547;
61 | background-color: #ffffff;
62 | }
63 | a:hover {
64 | color: #747bff;
65 | }
66 | button {
67 | background-color: #f9f9f9;
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/03-Gestion de eventos y formularios/manejo de Formularios/src/index.css:
--------------------------------------------------------------------------------
1 | :root {
2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3 | line-height: 1.5;
4 | font-weight: 400;
5 |
6 | color-scheme: light dark;
7 | color: rgba(255, 255, 255, 0.87);
8 | background-color: #242424;
9 |
10 | font-synthesis: none;
11 | text-rendering: optimizeLegibility;
12 | -webkit-font-smoothing: antialiased;
13 | -moz-osx-font-smoothing: grayscale;
14 | -webkit-text-size-adjust: 100%;
15 | }
16 |
17 | a {
18 | font-weight: 500;
19 | color: #646cff;
20 | text-decoration: inherit;
21 | }
22 | a:hover {
23 | color: #535bf2;
24 | }
25 |
26 | body {
27 | margin: 0;
28 | display: flex;
29 | place-items: center;
30 | min-width: 320px;
31 | min-height: 100vh;
32 | }
33 |
34 | h1 {
35 | font-size: 3.2em;
36 | line-height: 1.1;
37 | }
38 |
39 | button {
40 | border-radius: 8px;
41 | border: 1px solid transparent;
42 | padding: 0.6em 1.2em;
43 | font-size: 1em;
44 | font-weight: 500;
45 | font-family: inherit;
46 | background-color: #1a1a1a;
47 | cursor: pointer;
48 | transition: border-color 0.25s;
49 | }
50 | button:hover {
51 | border-color: #646cff;
52 | }
53 | button:focus,
54 | button:focus-visible {
55 | outline: 4px auto -webkit-focus-ring-color;
56 | }
57 |
58 | @media (prefers-color-scheme: light) {
59 | :root {
60 | color: #213547;
61 | background-color: #ffffff;
62 | }
63 | a:hover {
64 | color: #747bff;
65 | }
66 | button {
67 | background-color: #f9f9f9;
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React esencial
2 |
3 | Este es el repositorio del curso de LinkedIn Learning `React esencial`. El curso completo está disponible en [LinkedIn Learning][lil-course-url].
4 |
5 | ![Nombre completo del curso][lil-thumbnail-url]
6 |
7 | Consulta el archivo Readme en la rama main para obtener instrucciones e información actualizadas.
8 |
9 | Descubre el poder de React con nuestro curso esencial. Desde principiantes hasta desarrolladores experimentados, este curso te enseñará los conceptos fundamentales para construir aplicaciones web en React. Aprende a crear componentes, gestionar el estado y trabajar con datos, integrar librerías externas y desplegar tus aplicaciones de manera profesional. Amplía tus habilidades en el desarrollo web y domina la tecnología más popular del momento. ¡Impulsa tu carrera como desarrollador o desarrolladora con React!
10 |
11 | ## Instrucciones
12 |
13 | Este repositorio tiene ramas (branches) para cada uno de los vídeos del curso. Puedes usar el menú emergente de la rama en GitHub para cambiar a una rama específica y echar un vistazo al curso en esa etapa, o puedes añadir `/tree/nombre_de_la_rama` a la URL para ir a la rama a la que quieres acceder.
14 |
15 | ## Ramas
16 |
17 | Las ramas están estructuradas para corresponder a los vídeos del curso. La convención de nomenclatura es Capítulo#_Vídeo#. Por ejemplo, la rama denominada `02_03` corresponde al segundo capítulo y al tercer vídeo de ese capítulo. Algunas ramas tendrán un estado inicial y otro final. Están marcadas con las letras i («inicio») y f («fin»). La branch i tiene el mismo código que al principio del vídeo. La branch f tiene el mismo código que al final del vídeo. La rama master tiene el estado final del código que aparece en el curso.
18 |
19 | ## Instalación
20 |
21 | 1. Para utilizar estos archivos de ejercicios, debes tener descargado lo siguiente:
22 | - NodeJs
23 | - Visual Studio Code o tu editor de código favorito
24 |
25 | 2. Clona este repositorio en tu máquina local usando la Terminal (macOS) o CMD (Windows), o una herramienta GUI como SourceTree.
26 | 3. Selecciona la carpeta con el ejercicio que deseas utilizar y antes de usarla por primera vez ejecuta:
27 | `npm install`
28 | 4. Para ejecutar un proyecto en modo local, selecciona la carpeta con el ejercicio que deseas utilizar y ejecuta:
29 | `npm run dev`
30 |
31 | ### Docente
32 |
33 | **Carlos Solís**
34 |
35 | Echa un vistazo a mis otros cursos en [LinkedIn Learning](https://www.linkedin.com/learning/instructors/carlos-solis).
36 |
37 | [0]: # (Replace these placeholder URLs with actual course URLs)
38 | [lil-course-url]: https://www.linkedin.com/learning/react-esencial-22877511/desplegar-tus-proyectos-de-forma-profesional-con-react
39 | [lil-thumbnail-url]: https://media.licdn.com/dms/image/D560DAQHqWB--jAR7ug/learning-public-crop_675_1200/0/1695966422807?e=2147483647&v=beta&t=bTtZ-NYPzhQLG50oN8iEaTt72_RsxWGnl9utZrG5hXU
40 |
41 | [1]: # (End of ES-Instruction ###############################################################################################)
42 |
--------------------------------------------------------------------------------
/03-Gestion de eventos y formularios/manejo de Formularios/src/components/MiFormulario.jsx:
--------------------------------------------------------------------------------
1 |
2 | import React, { useState } from 'react'
3 |
4 | const MiFormulario = () => {
5 |
6 | const [formData, setFormData] = useState({
7 | username: '',
8 | email: 'ejemplo@ejemplo.com',
9 | password: '',
10 | })
11 |
12 | const [formErrors, setFormErrors] = useState({
13 | username: '',
14 | email: '',
15 | password: '',
16 | });
17 |
18 |
19 | const procesarCambio = (evento) => {
20 | const { name, value } = evento.target;
21 | setFormData((prevFormData) => ({
22 | ...prevFormData,
23 | [name]: value,
24 | }))
25 |
26 | setFormErrors((prevFormErrors) => ({
27 | ...prevFormErrors,
28 | [name]: '',
29 | }));
30 |
31 | }
32 |
33 | const procesarSubmit = (evento) => {
34 | evento.preventDefault();
35 | console.log(formData);
36 |
37 | const newFormErrors = {};
38 |
39 | if(formData.username.trim() === ''){
40 | newFormErrors.username = 'El usuario es requerido.';
41 | }
42 |
43 | if (formData.email.trim() === '') {
44 | newFormErrors.email = 'El email es requerido.';
45 | }
46 |
47 | if (formData.password.trim() === '') {
48 | newFormErrors.password = 'La contraseña es requerida.';
49 | }
50 |
51 | if (Object.keys(newFormErrors).length > 0) {
52 | setFormErrors(newFormErrors);
53 | } else {
54 | console.log('Formulario válido. Datos:', formData);
55 | }
56 | };
57 |
58 |
59 | return (
60 |
61 |
99 |
100 | );
101 | };
102 |
103 |
104 |
105 | export default MiFormulario;
106 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/07-Enrutamiento/Manejo de rutas/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/01-Fundamentos de React/componentes y propiedades/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/02-Construccion de componentes/componentes en React/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/04-Listas y estructuras de datos/Listas en react/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/03-Gestion de eventos y formularios/manejo de Formularios/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/06-gestion de Interfaz de usuario/Gestion de interfases en React/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/05-gestion de estado y carga de datos/Manejo de Estados y carga de datos/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | LinkedIn Learning Exercise Files License Agreement
2 | ==================================================
3 |
4 | This License Agreement (the "Agreement") is a binding legal agreement
5 | between you (as an individual or entity, as applicable) and LinkedIn
6 | Corporation (“LinkedIn”). By downloading or using the LinkedIn Learning
7 | exercise files in this repository (“Licensed Materials”), you agree to
8 | be bound by the terms of this Agreement. If you do not agree to these
9 | terms, do not download or use the Licensed Materials.
10 |
11 | 1. License.
12 | - a. Subject to the terms of this Agreement, LinkedIn hereby grants LinkedIn
13 | members during their LinkedIn Learning subscription a non-exclusive,
14 | non-transferable copyright license, for internal use only, to 1) make a
15 | reasonable number of copies of the Licensed Materials, and 2) make
16 | derivative works of the Licensed Materials for the sole purpose of
17 | practicing skills taught in LinkedIn Learning courses.
18 | - b. Distribution. Unless otherwise noted in the Licensed Materials, subject
19 | to the terms of this Agreement, LinkedIn hereby grants LinkedIn members
20 | with a LinkedIn Learning subscription a non-exclusive, non-transferable
21 | copyright license to distribute the Licensed Materials, except the
22 | Licensed Materials may not be included in any product or service (or
23 | otherwise used) to instruct or educate others.
24 |
25 | 2. Restrictions and Intellectual Property.
26 | - a. You may not to use, modify, copy, make derivative works of, publish,
27 | distribute, rent, lease, sell, sublicense, assign or otherwise transfer the
28 | Licensed Materials, except as expressly set forth above in Section 1.
29 | - b. Linkedin (and its licensors) retains its intellectual property rights
30 | in the Licensed Materials. Except as expressly set forth in Section 1,
31 | LinkedIn grants no licenses.
32 | - c. You indemnify LinkedIn and its licensors and affiliates for i) any
33 | alleged infringement or misappropriation of any intellectual property rights
34 | of any third party based on modifications you make to the Licensed Materials,
35 | ii) any claims arising from your use or distribution of all or part of the
36 | Licensed Materials and iii) a breach of this Agreement. You will defend, hold
37 | harmless, and indemnify LinkedIn and its affiliates (and our and their
38 | respective employees, shareholders, and directors) from any claim or action
39 | brought by a third party, including all damages, liabilities, costs and
40 | expenses, including reasonable attorneys’ fees, to the extent resulting from,
41 | alleged to have resulted from, or in connection with: (a) your breach of your
42 | obligations herein; or (b) your use or distribution of any Licensed Materials.
43 |
44 | 3. Open source. This code may include open source software, which may be
45 | subject to other license terms as provided in the files.
46 |
47 | 4. Warranty Disclaimer. LINKEDIN PROVIDES THE LICENSED MATERIALS ON AN “AS IS”
48 | AND “AS AVAILABLE” BASIS. LINKEDIN MAKES NO REPRESENTATION OR WARRANTY,
49 | WHETHER EXPRESS OR IMPLIED, ABOUT THE LICENSED MATERIALS, INCLUDING ANY
50 | REPRESENTATION THAT THE LICENSED MATERIALS WILL BE FREE OF ERRORS, BUGS OR
51 | INTERRUPTIONS, OR THAT THE LICENSED MATERIALS ARE ACCURATE, COMPLETE OR
52 | OTHERWISE VALID. TO THE FULLEST EXTENT PERMITTED BY LAW, LINKEDIN AND ITS
53 | AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY OR CONDITION, INCLUDING
54 | ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A
55 | PARTICULAR PURPOSE, AVAILABILITY, SECURITY, TITLE AND/OR NON-INFRINGEMENT.
56 | YOUR USE OF THE LICENSED MATERIALS IS AT YOUR OWN DISCRETION AND RISK, AND
57 | YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE THAT RESULTS FROM USE OF THE
58 | LICENSED MATERIALS TO YOUR COMPUTER SYSTEM OR LOSS OF DATA. NO ADVICE OR
59 | INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM US OR THROUGH OR
60 | FROM THE LICENSED MATERIALS WILL CREATE ANY WARRANTY OR CONDITION NOT
61 | EXPRESSLY STATED IN THESE TERMS.
62 |
63 | 5. Limitation of Liability. LINKEDIN SHALL NOT BE LIABLE FOR ANY INDIRECT,
64 | INCIDENTAL, SPECIAL, PUNITIVE, CONSEQUENTIAL OR EXEMPLARY DAMAGES, INCLUDING
65 | BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER
66 | INTANGIBLE LOSSES . IN NO EVENT WILL LINKEDIN'S AGGREGATE LIABILITY TO YOU
67 | EXCEED $100. THIS LIMITATION OF LIABILITY SHALL:
68 | - i. APPLY REGARDLESS OF WHETHER (A) YOU BASE YOUR CLAIM ON CONTRACT, TORT,
69 | STATUTE, OR ANY OTHER LEGAL THEORY, (B) WE KNEW OR SHOULD HAVE KNOWN ABOUT
70 | THE POSSIBILITY OF SUCH DAMAGES, OR (C) THE LIMITED REMEDIES PROVIDED IN THIS
71 | SECTION FAIL OF THEIR ESSENTIAL PURPOSE; AND
72 | - ii. NOT APPLY TO ANY DAMAGE THAT LINKEDIN MAY CAUSE YOU INTENTIONALLY OR
73 | KNOWINGLY IN VIOLATION OF THESE TERMS OR APPLICABLE LAW, OR AS OTHERWISE
74 | MANDATED BY APPLICABLE LAW THAT CANNOT BE DISCLAIMED IN THESE TERMS.
75 |
76 | 6. Termination. This Agreement automatically terminates upon your breach of
77 | this Agreement or termination of your LinkedIn Learning subscription. On
78 | termination, all licenses granted under this Agreement will terminate
79 | immediately and you will delete the Licensed Materials. Sections 2-7 of this
80 | Agreement survive any termination of this Agreement. LinkedIn may discontinue
81 | the availability of some or all of the Licensed Materials at any time for any
82 | reason.
83 |
84 | 7. Miscellaneous. This Agreement will be governed by and construed in
85 | accordance with the laws of the State of California without regard to conflict
86 | of laws principles. The exclusive forum for any disputes arising out of or
87 | relating to this Agreement shall be an appropriate federal or state court
88 | sitting in the County of Santa Clara, State of California. If LinkedIn does
89 | not act to enforce a breach of this Agreement, that does not mean that
90 | LinkedIn has waived its right to enforce this Agreement. The Agreement does
91 | not create a partnership, agency relationship, or joint venture between the
92 | parties. Neither party has the power or authority to bind the other or to
93 | create any obligation or responsibility on behalf of the other. You may not,
94 | without LinkedIn’s prior written consent, assign or delegate any rights or
95 | obligations under these terms, including in connection with a change of
96 | control. Any purported assignment and delegation shall be ineffective. The
97 | Agreement shall bind and inure to the benefit of the parties, their respective
98 | successors and permitted assigns. If any provision of the Agreement is
99 | unenforceable, that provision will be modified to render it enforceable to the
100 | extent possible to give effect to the parties’ intentions and the remaining
101 | provisions will not be affected. This Agreement is the only agreement between
102 | you and LinkedIn regarding the Licensed Materials, and supersedes all prior
103 | agreements relating to the Licensed Materials.
104 |
105 | Last Updated: March 2019
106 |
--------------------------------------------------------------------------------