67 | {indeterminate ? (
68 |
e.preventDefault()}>
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | ) : (
79 |
e.preventDefault()}>
80 |
84 |
85 | )}
86 | {notice && (
87 |
88 | {notice}
89 |
90 | )}
91 |
92 | )
93 | }
94 |
95 | const AsyncLoading: FunctionComponent = ({ children }) => {
96 | const [loadingState, dispatchLoadingAction] = useReducer(packLoadingReducer, {
97 | mode: "indeterminate",
98 | initializing: true
99 | })
100 |
101 | return (
102 |