Skip to content

Commit 6ee7364

Browse files
author
Lauro Silva
committed
Updating links on all .md files
1 parent a626bb1 commit 6ee7364

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

Diff for: AVANZADO.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212

1313
<p>Cheatsheets para desarrolladores expertos en React que comienzan con TypeScript</p>
1414

15-
[**Básico**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#basic-cheatsheet-table-of-contents) |
15+
[**Básico**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es#tabla-de-contenidos-de-la-cheatsheet-básica) |
1616
[**Avanzado**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/AVANZADO.md) |
1717
[**Migrando**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/MIGRATING.md) |
18-
[**HOC**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/HOC.md) |
19-
[中文翻译](https://github.com/fi3ework/blog/tree/master/react-typescript-cheatsheet-cn) |
20-
[¡Contribuir!](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/CONTRIBUYENDO.md) |
21-
[¡Preguntas!](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/issues/new)
18+
[**HOC**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/HOC.md) |
19+
[**Inglés**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet) |
20+
[**中文翻译**](https://github.com/fi3ework/blog/tree/master/react-typescript-cheatsheet-cn) |
21+
[Contribuir](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/CONTRIBUYENDO.md) |
22+
[Preguntas](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/issues/new)
2223

2324
</div>
2425

Diff for: HOC.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212

1313
<p>Cheatsheets para desarrolladores experimentados de React que estan empezando con TypeScript</p>
1414

15-
[**Básico**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#basic-cheatsheet-table-of-contents) |
15+
[**Básico**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es#tabla-de-contenidos-de-la-cheatsheet-básica) |
1616
[**Avanzado**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/AVANZADO.md) |
1717
[**Migrando**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/MIGRATING.md) |
18-
[**HOC**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/HOC.md) |
19-
[中文翻译](https://github.com/fi3ework/blog/tree/master/react-typescript-cheatsheet-cn) |
20-
[¡Contribuir!](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/CONTRIBUYENDO.md) |
21-
[¡Preguntas!](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/issues/new)
18+
[**HOC**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/HOC.md) |
19+
[**Inglés**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet) |
20+
[**中文翻译**](https://github.com/fi3ework/blog/tree/master/react-typescript-cheatsheet-cn) |
21+
[Contribuir](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/CONTRIBUYENDO.md) |
22+
[Preguntas](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/issues/new)
2223

2324
</div>
2425

@@ -372,10 +373,7 @@ const commentActions = () => ({
372373
addComment: (str: string) => comments.push({ text: str, id: comments.length })
373374
});
374375

375-
const ConnectedComment = connect(
376-
commentSelector,
377-
commentActions
378-
)(CommentList);
376+
const ConnectedComment = connect(commentSelector, commentActions)(CommentList);
379377
// prop que son inyectadas por el HOC.
380378
interface WithSubscriptionProps<T> {
381379
data: T;

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
<p>Cheatsheets para desarrolladores expertos en React que comienzan con TypeScript</p>
1616

17-
[**Básico**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#basic-cheatsheet-table-of-contents) |
17+
[**Básico**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es#tabla-de-contenidos-de-la-cheatsheet-básica) |
1818
[**Avanzado**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/AVANZADO.md) |
1919
[**Migrando**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/MIGRATING.md) |
20-
[**HOC**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/HOC.md) |
20+
[**HOC**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/HOC.md) |
2121
[**Inglés**](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet) |
2222
[**中文翻译**](https://github.com/fi3ework/blog/tree/master/react-typescript-cheatsheet-cn) |
2323
[Contribuir](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet-es/blob/master/CONTRIBUYENDO.md) |

0 commit comments

Comments
 (0)