├── 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 | 10 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |