Why do we need this file?
export MasterPage from './MasterPage'
export IndexPage from './IndexPage'
export LoginPage from './LoginPage'
export RegisterPage from './RegisterPage'
export ResetPasswordPage from './ResetPasswordPage'
export VerifyEmailPage from './VerifyEmailPage'
export ProfilePage from './ProfilePage'
export ChangePasswordPage from './ChangePasswordPage'
When each of the, say for example IndexPage has its own
export default class IndexPage extends React.Component { ....
}
Why do we need this file?
When each of the, say for example IndexPage has its own