According to the Laravel 7 docs // Generate login / registration scaffolding...
php artisan ui react --auth
From my understanding this would generate the auth with the react component being used as the auth view.
However after I run it in my project the auth is created with blade files and react is setup as the example component it usually creates. So is this command: "Install ui react AND auth as it normally does"? Or is there away I can get it to fire up the auth with React being the "view" used?