@@ -8,9 +8,9 @@ import React from 'react'
8
8
interface Props {
9
9
// ^^^^^ definition react-example 1.0.0 src/`LoaderInput.tsx`/Props#
10
10
loading : boolean
11
- //^^^^^^^ definition react-example 1.0.0 src/`LoaderInput.tsx`/Props#loading.
11
+ //^^^^^^^ definition react-example 1.0.0 src/`LoaderInput.tsx`/loading0:
12
12
children : React . ReactNode
13
- //^^^^^^^^ definition react-example 1.0.0 src/`LoaderInput.tsx`/Props#children.
13
+ //^^^^^^^^ definition react-example 1.0.0 src/`LoaderInput.tsx`/children0:
14
14
// ^^^^^ reference @types/react 18.2.39 `index.d.ts`/React/
15
15
// ^^^^^^^^^ reference @types/react 18.2.39 `index.d.ts`/React/ReactNode#
16
16
}
@@ -21,37 +21,37 @@ export const LoaderInput: React.FunctionComponent<Props> = ({
21
21
// ^^^^^^^^^^^^^^^^^ reference @types/react 18.2.39 `index.d.ts`/React/FunctionComponent#
22
22
// ^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#
23
23
loading,
24
- //^^^^^^^ definition local 3
25
- //^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#loading.
24
+ //^^^^^^^ definition local 4
25
+ //^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/loading0:
26
26
children,
27
- //^^^^^^^^ definition local 4
28
- //^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#children.
27
+ //^^^^^^^^ definition local 5
28
+ //^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/children0:
29
29
} ) => (
30
30
< div className = "hello" >
31
- // ^^^ reference @types/react 18.2.39 `index.d.ts`/global/JSX/IntrinsicElements#div.
32
- // ^^^^^^^^^ reference @types/react 18.2.39 `index.d.ts`/React/HTMLAttributes#className.
31
+ // ^^^ reference @types/react 18.2.39 `index.d.ts`/div0:
32
+ // ^^^^^^^^^ reference @types/react 18.2.39 `index.d.ts`/className0:
33
33
{ children }
34
- // ^^^^^^^^ reference local 4
34
+ // ^^^^^^^^ reference local 5
35
35
{ loading && < p > spinner</ p > }
36
- // ^^^^^^^ reference local 3
37
- // ^ reference @types/react 18.2.39 `index.d.ts`/global/JSX/IntrinsicElements#p.
38
- // ^ reference @types/react 18.2.39 `index.d.ts`/global/JSX/IntrinsicElements#p.
36
+ // ^^^^^^^ reference local 4
37
+ // ^ reference @types/react 18.2.39 `index.d.ts`/p0:
38
+ // ^ reference @types/react 18.2.39 `index.d.ts`/p0:
39
39
</ div >
40
- // ^^^ reference @types/react 18.2.39 `index.d.ts`/global/JSX/IntrinsicElements#div.
40
+ // ^^^ reference @types/react 18.2.39 `index.d.ts`/div0:
41
41
)
42
42
43
43
export const LoaderInput2 : React . FunctionComponent < Props > = props => {
44
44
// ^^^^^^^^^^^^ definition react-example 1.0.0 src/`LoaderInput.tsx`/LoaderInput2.
45
45
// ^^^^^ reference @types/react 18.2.39 `index.d.ts`/React/
46
46
// ^^^^^^^^^^^^^^^^^ reference @types/react 18.2.39 `index.d.ts`/React/FunctionComponent#
47
47
// ^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#
48
- // ^^^^^ definition local 6
48
+ // ^^^^^ definition local 705
49
49
return < LoaderInput loading = { true } key = "key" children = { props . children } />
50
50
// ^^^^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/LoaderInput.
51
- // ^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#loading.
52
- // ^^^ reference local 10
53
- // ^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#children.
54
- // ^^^^^ reference local 6
55
- // ^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/Props#children.
51
+ // ^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/loading0:
52
+ // ^^^ reference local 709
53
+ // ^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/children0:
54
+ // ^^^^^ reference local 705
55
+ // ^^^^^^^^ reference react-example 1.0.0 src/`LoaderInput.tsx`/children0:
56
56
}
57
57
0 commit comments