File tree Expand file tree Collapse file tree
src/frontend/src/tests/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import AppContext from '../../app/AppContext';
99vi . mock ( '../../app/AppContextQuery' , ( ) => {
1010 return {
1111 __esModule : true ,
12- default : ( props : any ) => {
12+ default : ( props : { children : React . ReactNode } ) => {
1313 return < div > app context query { props . children } </ div > ;
1414 }
1515 } ;
@@ -18,7 +18,7 @@ vi.mock('../../app/AppContextQuery', () => {
1818vi . mock ( '../../app/AppContextAuth' , ( ) => {
1919 return {
2020 __esModule : true ,
21- default : ( props : any ) => {
21+ default : ( props : { children : React . ReactNode } ) => {
2222 return < div > app context auth { props . children } </ div > ;
2323 }
2424 } ;
@@ -27,7 +27,7 @@ vi.mock('../../app/AppContextAuth', () => {
2727vi . mock ( '../../app/AppContextTheme' , ( ) => {
2828 return {
2929 __esModule : true ,
30- default : ( props : any ) => {
30+ default : ( props : { children : React . ReactNode } ) => {
3131 return < div > app context theme { props . children } </ div > ;
3232 }
3333 } ;
You can’t perform that action at this time.
0 commit comments