├── .env ├── .env.production ├── .eslintrc ├── .firebaserc ├── .gitignore ├── .prettierrc ├── .stylelintrc ├── .travis.yml ├── LICENSE ├── README.md ├── firebase.json ├── package.json ├── public ├── 404.html ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── img │ └── screenshots │ │ ├── flatlogic.com_admin-dashboards_react.png │ │ └── reduction-admin.jpg ├── index.html ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png └── ms-icon-70x70.png ├── src ├── App.js ├── assets │ ├── geo-data │ │ ├── world-50m.json │ │ └── world-most-populous-cities.json │ └── img │ │ ├── bg │ │ ├── background_1920-1.png │ │ ├── background_1920-10.jpg │ │ ├── background_1920-11.jpg │ │ ├── background_1920-12.jpg │ │ ├── background_1920-13.jpg │ │ ├── background_1920-14.jpg │ │ ├── background_1920-15.jpg │ │ ├── background_1920-16.jpg │ │ ├── background_1920-17.jpg │ │ ├── background_1920-18.jpg │ │ ├── background_1920-19.jpg │ │ ├── background_1920-2.jpg │ │ ├── background_1920-3.jpg │ │ ├── background_1920-4.jpg │ │ ├── background_1920-5.jpg │ │ ├── background_1920-6.jpg │ │ ├── background_1920-7.png │ │ ├── background_1920-8.jpg │ │ ├── background_1920-9.jpg │ │ ├── background_640-1.jpg │ │ ├── background_640-2.jpg │ │ └── background_640-3.jpg │ │ ├── logo │ │ └── logo_200.png │ │ ├── mask.png │ │ ├── products │ │ ├── product_640-1.jpg │ │ ├── product_640-2.jpg │ │ ├── product_640-3.jpg │ │ ├── product_640-4.jpg │ │ ├── product_640-5.jpg │ │ ├── product_640-6.jpg │ │ └── product_640-7.jpg │ │ ├── reactlogo.png │ │ ├── sidebar │ │ ├── rsz_1sidebar-4.jpg │ │ ├── rsz_sidebar-4.jpg │ │ ├── sidebar-1.jpg │ │ ├── sidebar-10.jpg │ │ ├── sidebar-11.jpg │ │ ├── sidebar-12.jpg │ │ ├── sidebar-2.jpg │ │ ├── sidebar-3.jpg │ │ ├── sidebar-4.jpg │ │ ├── sidebar-5.jpg │ │ ├── sidebar-6.jpg │ │ ├── sidebar-7.jpg │ │ ├── sidebar-8.jpg │ │ └── sidebar-9.jpg │ │ └── users │ │ ├── 100_1.jpg │ │ ├── 100_10.jpg │ │ ├── 100_11.jpg │ │ ├── 100_12.jpg │ │ ├── 100_13.jpg │ │ ├── 100_14.jpg │ │ ├── 100_2.jpg │ │ ├── 100_3.jpg │ │ ├── 100_4.jpg │ │ ├── 100_5.jpg │ │ ├── 100_6.jpg │ │ ├── 100_7.jpg │ │ ├── 100_8.jpg │ │ ├── 100_9.jpg │ │ ├── 300_1.jpg │ │ ├── 300_10.jpg │ │ ├── 300_11.jpg │ │ ├── 300_12.jpg │ │ ├── 300_13.jpg │ │ ├── 300_14.jpg │ │ ├── 300_2.jpg │ │ ├── 300_3.jpg │ │ ├── 300_4.jpg │ │ ├── 300_5.jpg │ │ ├── 300_6.jpg │ │ ├── 300_7.jpg │ │ ├── 300_8.jpg │ │ ├── 300_9.jpg │ │ ├── user1.jpg │ │ ├── user2.jpg │ │ ├── user3.jpg │ │ ├── user4.jpg │ │ └── user5.jpg ├── components │ ├── AuthForm.js │ ├── Avatar.js │ ├── Card │ │ ├── AnnouncementCard.js │ │ ├── AvatarCard.js │ │ ├── TodosCard.js │ │ ├── UserCard.js │ │ └── index.js │ ├── GAListener.js │ ├── HorizontalAvatarList.js │ ├── Layout │ │ ├── Content.js │ │ ├── EmptyLayout.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── LayoutRoute.js │ │ ├── MainLayout.js │ │ ├── Sidebar.js │ │ └── index.js │ ├── MapWithBubbles.js │ ├── Notifications.js │ ├── Page.js │ ├── PageSpinner.js │ ├── ProductMedia.js │ ├── SearchInput.js │ ├── SourceLink.js │ ├── SupportTicket.js │ ├── Todos.js │ ├── Typography.js │ ├── UserProgressTable.js │ └── Widget │ │ ├── IconWidget.js │ │ ├── NumberWidget.js │ │ └── index.js ├── demos │ ├── cardPage.js │ ├── chartjs.js │ ├── dashboardPage.js │ ├── header.js │ └── widgetPage.js ├── hocs │ └── withBadge.js ├── index.js ├── pages │ ├── AlertPage.js │ ├── AuthModal.js │ ├── AuthModalPage.js │ ├── AuthPage.js │ ├── BadgePage.js │ ├── ButtonGroupPage.js │ ├── ButtonPage.js │ ├── CardPage.js │ ├── ChartPage.js │ ├── DashboardPage.js │ ├── DropdownPage.js │ ├── FormPage.js │ ├── InputGroupPage.js │ ├── ModalPage.js │ ├── ProgressPage.js │ ├── TablePage.js │ ├── TypographyPage.js │ └── WidgetPage.js ├── registerServiceWorker.js ├── styles │ ├── _animations.scss │ ├── _base.scss │ ├── _extends.scss │ ├── _overrides.scss │ ├── _variables.scss │ ├── components │ │ ├── _content.scss │ │ ├── _header.scss │ │ ├── _page.scss │ │ ├── _search-input.scss │ │ ├── _sidebar.scss │ │ └── _widget.scss │ ├── demos │ │ └── _demos.scss │ ├── reduction.scss │ ├── themes │ │ └── _colors.scss │ └── utils │ │ └── _utils.scss └── utils │ ├── bemnames.js │ ├── colors.js │ ├── constants.js │ ├── demos.js │ └── propTypes.js └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.env -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "react-app" 3 | } 4 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/404.html -------------------------------------------------------------------------------- /public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/android-icon-144x144.png -------------------------------------------------------------------------------- /public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/android-icon-192x192.png -------------------------------------------------------------------------------- /public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/android-icon-36x36.png -------------------------------------------------------------------------------- /public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/android-icon-48x48.png -------------------------------------------------------------------------------- /public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/android-icon-72x72.png -------------------------------------------------------------------------------- /public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/android-icon-96x96.png -------------------------------------------------------------------------------- /public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/screenshots/flatlogic.com_admin-dashboards_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/img/screenshots/flatlogic.com_admin-dashboards_react.png -------------------------------------------------------------------------------- /public/img/screenshots/reduction-admin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/img/screenshots/reduction-admin.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/geo-data/world-50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/geo-data/world-50m.json -------------------------------------------------------------------------------- /src/assets/geo-data/world-most-populous-cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/geo-data/world-most-populous-cities.json -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-1.png -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-10.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-11.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-12.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-13.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-14.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-15.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-16.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-17.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-18.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-19.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-2.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-3.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-4.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-5.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-6.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-7.png -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-8.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_1920-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_1920-9.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_640-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_640-1.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_640-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_640-2.jpg -------------------------------------------------------------------------------- /src/assets/img/bg/background_640-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/bg/background_640-3.jpg -------------------------------------------------------------------------------- /src/assets/img/logo/logo_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/logo/logo_200.png -------------------------------------------------------------------------------- /src/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/mask.png -------------------------------------------------------------------------------- /src/assets/img/products/product_640-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-1.jpg -------------------------------------------------------------------------------- /src/assets/img/products/product_640-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-2.jpg -------------------------------------------------------------------------------- /src/assets/img/products/product_640-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-3.jpg -------------------------------------------------------------------------------- /src/assets/img/products/product_640-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-4.jpg -------------------------------------------------------------------------------- /src/assets/img/products/product_640-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-5.jpg -------------------------------------------------------------------------------- /src/assets/img/products/product_640-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-6.jpg -------------------------------------------------------------------------------- /src/assets/img/products/product_640-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/products/product_640-7.jpg -------------------------------------------------------------------------------- /src/assets/img/reactlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/reactlogo.png -------------------------------------------------------------------------------- /src/assets/img/sidebar/rsz_1sidebar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/rsz_1sidebar-4.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/rsz_sidebar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/rsz_sidebar-4.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-1.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-10.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-11.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-12.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-2.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-3.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-4.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-5.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-6.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-7.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-8.jpg -------------------------------------------------------------------------------- /src/assets/img/sidebar/sidebar-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/sidebar/sidebar-9.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_1.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_10.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_11.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_12.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_13.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_14.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_2.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_3.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_4.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_5.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_6.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_7.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_8.jpg -------------------------------------------------------------------------------- /src/assets/img/users/100_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/100_9.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_1.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_10.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_11.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_12.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_13.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_14.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_2.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_3.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_4.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_5.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_6.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_7.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_8.jpg -------------------------------------------------------------------------------- /src/assets/img/users/300_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/300_9.jpg -------------------------------------------------------------------------------- /src/assets/img/users/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/user1.jpg -------------------------------------------------------------------------------- /src/assets/img/users/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/user2.jpg -------------------------------------------------------------------------------- /src/assets/img/users/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/user3.jpg -------------------------------------------------------------------------------- /src/assets/img/users/user4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/user4.jpg -------------------------------------------------------------------------------- /src/assets/img/users/user5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/assets/img/users/user5.jpg -------------------------------------------------------------------------------- /src/components/AuthForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/AuthForm.js -------------------------------------------------------------------------------- /src/components/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Avatar.js -------------------------------------------------------------------------------- /src/components/Card/AnnouncementCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Card/AnnouncementCard.js -------------------------------------------------------------------------------- /src/components/Card/AvatarCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Card/AvatarCard.js -------------------------------------------------------------------------------- /src/components/Card/TodosCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Card/TodosCard.js -------------------------------------------------------------------------------- /src/components/Card/UserCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Card/UserCard.js -------------------------------------------------------------------------------- /src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Card/index.js -------------------------------------------------------------------------------- /src/components/GAListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/GAListener.js -------------------------------------------------------------------------------- /src/components/HorizontalAvatarList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/HorizontalAvatarList.js -------------------------------------------------------------------------------- /src/components/Layout/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/Content.js -------------------------------------------------------------------------------- /src/components/Layout/EmptyLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/EmptyLayout.js -------------------------------------------------------------------------------- /src/components/Layout/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/Footer.js -------------------------------------------------------------------------------- /src/components/Layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/Header.js -------------------------------------------------------------------------------- /src/components/Layout/LayoutRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/LayoutRoute.js -------------------------------------------------------------------------------- /src/components/Layout/MainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/MainLayout.js -------------------------------------------------------------------------------- /src/components/Layout/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/Sidebar.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Layout/index.js -------------------------------------------------------------------------------- /src/components/MapWithBubbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/MapWithBubbles.js -------------------------------------------------------------------------------- /src/components/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Notifications.js -------------------------------------------------------------------------------- /src/components/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Page.js -------------------------------------------------------------------------------- /src/components/PageSpinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/PageSpinner.js -------------------------------------------------------------------------------- /src/components/ProductMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/ProductMedia.js -------------------------------------------------------------------------------- /src/components/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/SearchInput.js -------------------------------------------------------------------------------- /src/components/SourceLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/SourceLink.js -------------------------------------------------------------------------------- /src/components/SupportTicket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/SupportTicket.js -------------------------------------------------------------------------------- /src/components/Todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Todos.js -------------------------------------------------------------------------------- /src/components/Typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Typography.js -------------------------------------------------------------------------------- /src/components/UserProgressTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/UserProgressTable.js -------------------------------------------------------------------------------- /src/components/Widget/IconWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Widget/IconWidget.js -------------------------------------------------------------------------------- /src/components/Widget/NumberWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Widget/NumberWidget.js -------------------------------------------------------------------------------- /src/components/Widget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/components/Widget/index.js -------------------------------------------------------------------------------- /src/demos/cardPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/demos/cardPage.js -------------------------------------------------------------------------------- /src/demos/chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/demos/chartjs.js -------------------------------------------------------------------------------- /src/demos/dashboardPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/demos/dashboardPage.js -------------------------------------------------------------------------------- /src/demos/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/demos/header.js -------------------------------------------------------------------------------- /src/demos/widgetPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/demos/widgetPage.js -------------------------------------------------------------------------------- /src/hocs/withBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/hocs/withBadge.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AlertPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/AlertPage.js -------------------------------------------------------------------------------- /src/pages/AuthModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/AuthModal.js -------------------------------------------------------------------------------- /src/pages/AuthModalPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/AuthModalPage.js -------------------------------------------------------------------------------- /src/pages/AuthPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/AuthPage.js -------------------------------------------------------------------------------- /src/pages/BadgePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/BadgePage.js -------------------------------------------------------------------------------- /src/pages/ButtonGroupPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/ButtonGroupPage.js -------------------------------------------------------------------------------- /src/pages/ButtonPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/ButtonPage.js -------------------------------------------------------------------------------- /src/pages/CardPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/CardPage.js -------------------------------------------------------------------------------- /src/pages/ChartPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/ChartPage.js -------------------------------------------------------------------------------- /src/pages/DashboardPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/DashboardPage.js -------------------------------------------------------------------------------- /src/pages/DropdownPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/DropdownPage.js -------------------------------------------------------------------------------- /src/pages/FormPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/FormPage.js -------------------------------------------------------------------------------- /src/pages/InputGroupPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/InputGroupPage.js -------------------------------------------------------------------------------- /src/pages/ModalPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/ModalPage.js -------------------------------------------------------------------------------- /src/pages/ProgressPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/ProgressPage.js -------------------------------------------------------------------------------- /src/pages/TablePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/TablePage.js -------------------------------------------------------------------------------- /src/pages/TypographyPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/TypographyPage.js -------------------------------------------------------------------------------- /src/pages/WidgetPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/pages/WidgetPage.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/styles/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/_animations.scss -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/_base.scss -------------------------------------------------------------------------------- /src/styles/_extends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/_extends.scss -------------------------------------------------------------------------------- /src/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/_overrides.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/components/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/components/_content.scss -------------------------------------------------------------------------------- /src/styles/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/components/_header.scss -------------------------------------------------------------------------------- /src/styles/components/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/components/_page.scss -------------------------------------------------------------------------------- /src/styles/components/_search-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/components/_search-input.scss -------------------------------------------------------------------------------- /src/styles/components/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/components/_sidebar.scss -------------------------------------------------------------------------------- /src/styles/components/_widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/components/_widget.scss -------------------------------------------------------------------------------- /src/styles/demos/_demos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/demos/_demos.scss -------------------------------------------------------------------------------- /src/styles/reduction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/reduction.scss -------------------------------------------------------------------------------- /src/styles/themes/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/themes/_colors.scss -------------------------------------------------------------------------------- /src/styles/utils/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/styles/utils/_utils.scss -------------------------------------------------------------------------------- /src/utils/bemnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/utils/bemnames.js -------------------------------------------------------------------------------- /src/utils/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/utils/colors.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/demos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/utils/demos.js -------------------------------------------------------------------------------- /src/utils/propTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/src/utils/propTypes.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reduction-admin/react-reduction/HEAD/yarn.lock --------------------------------------------------------------------------------