fix: use type-only import for ReactNode (TypeScript verbatimModuleSyntax)

This commit is contained in:
2001-01-01 00:00:00 +00:00
parent 04ce0ce3bb
commit 3ae74a7f7d

View File

@@ -1,5 +1,5 @@
import { useAuth } from 'react-oidc-context'; import { useAuth } from 'react-oidc-context';
import { ReactNode } from 'react'; import type { ReactNode } from 'react';
interface AuthWrapperProps { interface AuthWrapperProps {
children: ReactNode; children: ReactNode;