You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.
Hi. I used aspnetcore-spa generator with react-redux.
Iinstalled npm package redux-auth.
After it I updated Home. tsx file:
import * as React from 'react';
import { EmailSignUpForm } from "redux-auth/default-theme";
export default class Home extends React.Component<any, void> {
public render() {
return <div>
<EmailSignUpForm />;
</div>;
}
}
But now I am getting error when trying to run webpack:
Cannot find module 'redux-auth/default-theme'.
Is there anything I forgot to do?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
Since you're using TypeScript, you must also provide type information, e.g., .d.ts files or a @types package.
Based on a quick search of npmjs.org, I don't see any @types package for redux-auth, but people are talking about it here: mjrussell/redux-auth-wrapper#50
Hi. I used aspnetcore-spa generator with react-redux.
Iinstalled npm package redux-auth.
After it I updated Home. tsx file:
But now I am getting error when trying to run webpack:
Cannot find module 'redux-auth/default-theme'.
Is there anything I forgot to do?
Thank you in advance.
The text was updated successfully, but these errors were encountered: