├── reactStarter ├── asset │ ├── NextJs14-mui5.gif │ ├── css │ │ └── react.css │ └── js │ │ └── index.html └── index.html ├── images └── react │ └── react.svg └── index.html /reactStarter/asset/NextJs14-mui5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexStack/AlexStack.github.io/master/reactStarter/asset/NextJs14-mui5.gif -------------------------------------------------------------------------------- /reactStarter/asset/css/react.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: azure; 3 | color: rgb(20, 20, 20); 4 | } 5 | 6 | .redux-buttons a.active { 7 | color: yellow !important; 8 | } 9 | -------------------------------------------------------------------------------- /images/react/react.svg: -------------------------------------------------------------------------------- 1 | 2 | React Logo 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Test back button

4 | 5 | 14 | -------------------------------------------------------------------------------- /reactStarter/asset/js/index.html: -------------------------------------------------------------------------------- 1 | AlexStack ReactJs Starter
Loading the react example...
-------------------------------------------------------------------------------- /reactStarter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | AlexStack ReactJs Starter 8 | 9 | 13 | 14 | 18 | 19 | 20 | 21 | 22 | 23 |
24 |
25 |
26 |
27 | 28 | Loading the react example... 29 |
30 |
31 |
32 |
33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 49 | 54 | 55 | 56 | --------------------------------------------------------------------------------