intro-to-react
intro-to-react copied to clipboard
A Hands-On Walkthrough of your first React Web App
Added versions for `react-bootstrap` and `bootswatch`. Proofs: - React-bootstrap on latest version: - **Navbar.Header issue** [stackoverflow - react-js-navbar-header-element-type-is-invalid](https://stackoverflow.com/questions/55060067/react-js-navbar-header-element-type-is-invalid) - **Grid re-name** [Grid component rename in later version to Container](https://react-bootstrap.netlify.com/migrating/) via...
Specify `bootstrap@^3.3.7` semantic version during package install. This fixes `react-bootstrap`'s incompatibility with the new Bootstrap 4. Also specify `bootswatch@^3.3.7` semantic version for same reason.
I had a problem with the import of the Bootswatch CSS file. I resolved it with the next path: `import "bootswatch/dist/journal/bootstrap.css";` But it shows the **NavItem** component(_pills_) as follows: ...
Lately I've been thinking about how simple react apps are without explicitly using state, but just handle all app state in the url. your demo app seems like a perfect...