File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ interface Props {
9
9
export const InternalLinks = {
10
10
Selector : memo ( ( { text = 'selector' } ) => (
11
11
< Link
12
+ id = "selector-function"
12
13
to = "/introduction/getting-started#selector-function"
13
14
title = "Selector Function"
14
15
>
@@ -17,6 +18,7 @@ export const InternalLinks = {
17
18
) ) ,
18
19
InputSelectors : memo ( ( { text = 'input selectors' } ) => (
19
20
< Link
21
+ id = "input-selectors"
20
22
to = "/introduction/getting-started#input-selectors"
21
23
title = "Input Selectors"
22
24
>
@@ -25,6 +27,7 @@ export const InternalLinks = {
25
27
) ) ,
26
28
OutputSelector : memo ( ( { text = 'output selector' } ) => (
27
29
< Link
30
+ id = "output-selector"
28
31
to = "/introduction/getting-started#output-selector"
29
32
title = "Output Selector"
30
33
>
@@ -33,14 +36,19 @@ export const InternalLinks = {
33
36
) ) ,
34
37
ResultFunction : memo ( ( { text = 'result function' } ) => (
35
38
< Link
39
+ id = "result-function"
36
40
to = "/introduction/getting-started#result-function"
37
41
title = "Result Function"
38
42
>
39
43
{ text }
40
44
</ Link >
41
45
) ) ,
42
46
Dependencies : memo ( ( { text = 'dependencies' } ) => (
43
- < Link to = "/introduction/getting-started#dependencies" title = "Dependencies" >
47
+ < Link
48
+ id = "dependencies"
49
+ to = "/introduction/getting-started#dependencies"
50
+ title = "Dependencies"
51
+ >
44
52
{ text }
45
53
</ Link >
46
54
) ) ,
You can’t perform that action at this time.
0 commit comments