UserProviderProps interface represents the structure of the UserProvider props. It includes a property for the children of the UserProvider.

interface UserProviderProps {
    children: ReactNode;
}

Properties

Properties

children: ReactNode