├── .gitignore ├── .idea ├── ReactNews.iml ├── encodings.xml ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml ├── preferred-vcs.xml └── vcs.xml ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── css ├── index.css ├── mobile.css ├── pc.css └── style.css ├── images ├── carousel_1.jpg ├── carousel_2.jpg ├── carousel_3.jpg ├── carousel_4.jpg └── logo.png ├── index.js ├── js ├── components │ ├── common │ │ └── comments.js │ ├── mobile │ │ ├── mobile_footer.js │ │ ├── mobile_header.js │ │ ├── mobile_index.js │ │ ├── mobile_list.js │ │ ├── mobile_news_detail.js │ │ └── mobile_usercenter.js │ └── pc │ │ ├── pc_footer.js │ │ ├── pc_header.js │ │ ├── pc_index.js │ │ ├── pc_news_block.js │ │ ├── pc_news_details.js │ │ ├── pc_news_image_block.js │ │ ├── pc_newscontainer.js │ │ └── pc_usercenter.js └── router │ └── router.js └── registerServiceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/ReactNews.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/ReactNews.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/preferred-vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/preferred-vcs.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/css/index.css -------------------------------------------------------------------------------- /src/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/css/mobile.css -------------------------------------------------------------------------------- /src/css/pc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/css/pc.css -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- 1 | .mt20{ 2 | margin-top: 20px; 3 | } -------------------------------------------------------------------------------- /src/images/carousel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/images/carousel_1.jpg -------------------------------------------------------------------------------- /src/images/carousel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/images/carousel_2.jpg -------------------------------------------------------------------------------- /src/images/carousel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/images/carousel_3.jpg -------------------------------------------------------------------------------- /src/images/carousel_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/images/carousel_4.jpg -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/index.js -------------------------------------------------------------------------------- /src/js/components/common/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/common/comments.js -------------------------------------------------------------------------------- /src/js/components/mobile/mobile_footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/mobile/mobile_footer.js -------------------------------------------------------------------------------- /src/js/components/mobile/mobile_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/mobile/mobile_header.js -------------------------------------------------------------------------------- /src/js/components/mobile/mobile_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/mobile/mobile_index.js -------------------------------------------------------------------------------- /src/js/components/mobile/mobile_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/mobile/mobile_list.js -------------------------------------------------------------------------------- /src/js/components/mobile/mobile_news_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/mobile/mobile_news_detail.js -------------------------------------------------------------------------------- /src/js/components/mobile/mobile_usercenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/mobile/mobile_usercenter.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_footer.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_header.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_index.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_news_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_news_block.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_news_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_news_details.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_news_image_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_news_image_block.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_newscontainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_newscontainer.js -------------------------------------------------------------------------------- /src/js/components/pc/pc_usercenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/components/pc/pc_usercenter.js -------------------------------------------------------------------------------- /src/js/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/js/router/router.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanlele/React-News/HEAD/src/registerServiceWorker.js --------------------------------------------------------------------------------