├── .gitignore ├── README.md ├── babel.config.js ├── changelog.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── docs ├── apple-touch-icon.png ├── asset-manifest.json ├── demo │ └── grid │ │ ├── autoload.php │ │ ├── default.php │ │ ├── news.php │ │ └── shares.php ├── favicon.png ├── images │ └── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ └── a6.jpg ├── index.html ├── manifest.json ├── precache-manifest.d275839bd6b281c54747ef140ca30adb.js ├── service-worker.js └── tables │ ├── css │ ├── 2.566e667f.chunk.css │ ├── 2.566e667f.chunk.css.map │ ├── main.40738c65.chunk.css │ └── main.40738c65.chunk.css.map │ ├── js │ ├── 2.07185f54.chunk.js │ ├── main.da70b71d.chunk.js │ └── runtime~main.5fe9fcb5.js │ └── media │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── Arrow 5.5f6347ea.svg │ ├── Arrow 6.bc82bf17.svg │ ├── Charts_filled.03aeae60.svg │ ├── Charts_outlined.64e593d5.svg │ ├── Core_filled.2d61b796.svg │ ├── Core_outlined.43f7583b.svg │ ├── Documentation_filled.53a773a4.svg │ ├── Documentation_outlined.a4d63b9b.svg │ ├── E-commerce_filled.3856032e.svg │ ├── E-commerce_outlined.b677bb71.svg │ ├── Email_filled.0208dadb.svg │ ├── Email_outlined.c345fb38.svg │ ├── Flaticon.686496bc.svg │ ├── Flaticon.76ed06ab.woff │ ├── Flaticon.90bc8831.ttf │ ├── Flaticon.96850e10.eot │ ├── Forms_filled.7b0e92b3.svg │ ├── Forms_outlined.c936a5f1.svg │ ├── Grid_filled.6b904d8f.svg │ ├── Grid_outlined.63949b05.svg │ ├── Logout_filled.4d4d18fd.svg │ ├── Logout_outlined.91cb8969.svg │ ├── Maps_filled.579ae3df.svg │ ├── Maps_outlined.1f6a676b.svg │ ├── Package_filled.d7de0fb9.svg │ ├── Package_outlined.a8fbbef9.svg │ ├── Profile_filled.d4c42dec.svg │ ├── Profile_outlined.c0a824be.svg │ ├── Settings_filled.b8d88b83.svg │ ├── Settings_outlined.afa5d5f8.svg │ ├── Tables_filled.5e94f36e.svg │ ├── Tables_outlined.a6f53fb7.svg │ ├── Typography-dark.1354476e.svg │ ├── Typography.0e73b9df.svg │ ├── Typography_filled.1354476e.svg │ ├── Typography_outlined.0e73b9df.svg │ ├── Vector-1.0e63cf90.svg │ ├── Vector-2.7e366352.svg │ ├── Vector-3.5d5d3960.svg │ ├── Vector-4.24e1523a.svg │ ├── a3.jpg │ ├── a5.jpg │ ├── a6.jpg │ ├── account.f7f8d087.svg │ ├── arrow-right.8af4bbb3.svg │ ├── caret-active.59e80c76.svg │ ├── caret.55985359.svg │ ├── dark-dashboard.1414625f.svg │ ├── error-page-img.b96e4579.svg │ ├── fontawesome-webfont.674f50d2.eot │ ├── fontawesome-webfont.acf3dcb7.svg │ ├── fontawesome-webfont.af7ae505.woff2 │ ├── fontawesome-webfont.b06871f2.ttf │ ├── fontawesome-webfont.fee66e71.woff │ ├── glyphicons-halflings-regular.448c34a5.woff2 │ ├── glyphicons-halflings-regular.d41d8cd9.ttf │ ├── glyphicons-halflings-regular.f4769f9b.eot │ ├── glyphicons-halflings-regular.f7214668.svg │ ├── glyphicons-halflings-regular.fa277232.woff │ ├── light-dashboard.91829f1b.svg │ ├── light-notify.c9c38975.svg │ ├── line-awesome.131b7f1e.svg │ ├── line-awesome.3f85d803.eot │ ├── line-awesome.452a5b42.woff2 │ ├── line-awesome.4d42f5f0.ttf │ ├── line-awesome.8b129059.woff │ ├── logo.58bf0b70.svg │ ├── logout.f0f095ef.svg │ ├── messages-filled.49ad4d1e.svg │ ├── messages.42686513.svg │ ├── notify.1de68cd8.svg │ ├── orders.f7ed3ab7.svg │ ├── search.477f8f19.svg │ ├── settings.30925f5d.svg │ ├── signinImg.b419c9ef.svg │ ├── signupImg.506bfe1d.svg │ ├── smileImg.568ca3eb.svg │ ├── stocks.e619d9fb.svg │ ├── stocksDown.66992d2e.svg │ ├── tables-dark.5e94f36e.svg │ ├── tables.a6f53fb7.svg │ ├── total-sale.9730d62b.svg │ ├── ui elements_filled.727a55c8.svg │ ├── ui elements_outlined.e7a04833.svg │ ├── ui-elements-dark.727a55c8.svg │ ├── ui-elements.e7a04833.svg │ ├── usersImg.d44327ac.svg │ └── widget-menu.b2e371d9.svg ├── package.json ├── public ├── apple-touch-icon.png ├── demo │ └── grid │ │ ├── autoload.php │ │ ├── default.php │ │ ├── news.php │ │ └── shares.php ├── favicon.png ├── images │ └── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ └── a6.jpg ├── index.html └── manifest.json ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── actions │ ├── README.md │ ├── alerts.js │ ├── layout.js │ ├── navigation.js │ ├── register.js │ └── user.js ├── components │ ├── App.js │ ├── BreadcrumbHistory │ │ ├── BreadcrumbHistory.js │ │ ├── BreadcrumbHistory.module.scss │ │ └── package.json │ ├── Header │ │ ├── Header.js │ │ ├── Header.module.scss │ │ └── package.json │ ├── Layout │ │ ├── Layout.js │ │ ├── Layout.module.scss │ │ ├── Layout.test.js │ │ └── package.json │ ├── Loader │ │ ├── Loader.js │ │ ├── Loader.module.scss │ │ └── package.json │ ├── Notifications │ │ ├── Notifications.js │ │ ├── Notifications.module.scss │ │ ├── notifications-demo │ │ │ ├── Account.js │ │ │ ├── ListGroup.module.scss │ │ │ ├── Messages.js │ │ │ ├── NewNotifications.js │ │ │ ├── Notifications.js │ │ │ └── Progress.js │ │ └── package.json │ ├── Sidebar │ │ ├── LinksGroup │ │ │ ├── LinksGroup.js │ │ │ └── LinksGroup.module.scss │ │ ├── Sidebar.js │ │ ├── Sidebar.module.scss │ │ └── package.json │ ├── Skycon │ │ ├── Skycon.js │ │ └── package.json │ ├── Sparklines │ │ ├── Sparklines.js │ │ ├── Sparklines.scss │ │ └── package.json │ └── Widget │ │ ├── Widget.js │ │ ├── Widget.module.scss │ │ └── package.json ├── config.js ├── core │ ├── Bundle.js │ ├── screenHelper.js │ └── withMeta.js ├── fonts │ ├── flaticon │ │ ├── Flaticon.eot │ │ ├── Flaticon.svg │ │ ├── Flaticon.ttf │ │ ├── Flaticon.woff │ │ └── _flaticon.scss │ ├── font-awesome │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── glyphicons │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── Arrow 5.svg │ ├── Arrow 6.svg │ ├── Typography-dark.svg │ ├── Typography.svg │ ├── Vector-1.svg │ ├── Vector-2.svg │ ├── Vector-3.svg │ ├── Vector-4.svg │ ├── account.svg │ ├── arrow-right.svg │ ├── avatar.png │ ├── caret-active.svg │ ├── caret.svg │ ├── dark-dashboard.svg │ ├── dark-extra.svg │ ├── dashboard.svg │ ├── documentation │ │ ├── dribble-logo.svg │ │ ├── facebook-logo.svg │ │ ├── github-logo.svg │ │ ├── instagram-logo.svg │ │ ├── linkedin-logo.svg │ │ ├── sing-screenshot.jpg │ │ └── twitter-logo.svg │ ├── error-page-img.svg │ ├── icons │ │ ├── Charts_filled.svg │ │ ├── Charts_outlined.svg │ │ ├── Core_filled.svg │ │ ├── Core_outlined.svg │ │ ├── Dashboard_filled.svg │ │ ├── Dashboard_outlined.svg │ │ ├── Documentation_filled.svg │ │ ├── Documentation_outlined.svg │ │ ├── E-commerce_filled.svg │ │ ├── E-commerce_outlined.svg │ │ ├── Emai_nav_filled.svg │ │ ├── Emai_nav_outlined.svg │ │ ├── Email_filled.svg │ │ ├── Email_outlined.svg │ │ ├── Extra_filled.svg │ │ ├── Extra_outlined.svg │ │ ├── Forms_filled.svg │ │ ├── Forms_outlined.svg │ │ ├── Grid_filled.svg │ │ ├── Grid_outlined.svg │ │ ├── Logout_filled.svg │ │ ├── Logout_outlined.svg │ │ ├── Maps_filled.svg │ │ ├── Maps_outlined.svg │ │ ├── Package_filled.svg │ │ ├── Package_outlined.svg │ │ ├── Profile_filled.svg │ │ ├── Profile_outlined.svg │ │ ├── Settings_filled.svg │ │ ├── Settings_outlined.svg │ │ ├── Tables_filled.svg │ │ ├── Tables_outlined.svg │ │ ├── Typography_filled.svg │ │ ├── Typography_outlined.svg │ │ ├── dots.svg │ │ ├── notification_filled.svg │ │ ├── notification_outlined.svg │ │ ├── ui elements_filled.svg │ │ └── ui elements_outlined.svg │ ├── light-dashboard.svg │ ├── light-extra.svg │ ├── light-notify.svg │ ├── logo.svg │ ├── logout.svg │ ├── messages-filled.svg │ ├── messages.svg │ ├── microsoft.png │ ├── notification-dark.svg │ ├── notification.svg │ ├── notify.svg │ ├── orders.svg │ ├── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ ├── a6.jpg │ │ ├── n1.png │ │ ├── n2.png │ │ ├── n3.png │ │ ├── n4.png │ │ ├── p1.png │ │ ├── p2.png │ │ ├── p3.png │ │ └── p4.png │ ├── pie-chart.svg │ ├── react-logo.svg │ ├── search.svg │ ├── settings.svg │ ├── signinImg.svg │ ├── signupImg.svg │ ├── smileImg.svg │ ├── stocks.svg │ ├── stocksDown.svg │ ├── tables-dark.svg │ ├── tables.svg │ ├── tables │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── theme-change-img.svg │ ├── total-sale.svg │ ├── ui-elements-dark.svg │ ├── ui-elements.svg │ ├── userAvatar.png │ ├── usersImg.svg │ └── widget-menu.svg ├── index.js ├── pages │ ├── charts │ │ ├── Charts.js │ │ ├── Charts.module.scss │ │ ├── apex │ │ │ ├── Apex.js │ │ │ ├── ApexChart.module.scss │ │ │ ├── mock.js │ │ │ └── package.json │ │ ├── config.js │ │ ├── echarts │ │ │ ├── Echarts.js │ │ │ ├── Echarts.scss │ │ │ ├── mock.js │ │ │ └── package.json │ │ ├── highcharts │ │ │ ├── HighCharts.js │ │ │ ├── mock.js │ │ │ ├── package.json │ │ │ ├── sunburstData.js │ │ │ └── usdeur.js │ │ ├── mock.js │ │ └── package.json │ ├── dashboard │ │ ├── Dashboard.js │ │ ├── Dashboard.module.scss │ │ ├── chartsMock.js │ │ ├── config.js │ │ └── package.json │ ├── error │ │ ├── ErrorPage.js │ │ ├── ErrorPage.module.scss │ │ └── package.json │ ├── icons │ │ ├── Icons.js │ │ ├── Icons.module.scss │ │ └── package.json │ ├── login │ │ ├── Login.js │ │ ├── Login.module.scss │ │ └── package.json │ ├── maps │ │ ├── Maps.js │ │ └── package.json │ ├── notifications │ │ ├── Notifications.js │ │ ├── Notifications.module.scss │ │ └── package.json │ ├── register │ │ ├── Register.js │ │ ├── Register.module.scss │ │ └── package.json │ ├── tables │ │ ├── Tables.js │ │ ├── Tables.modules.scss │ │ └── package.json │ └── typography │ │ ├── Typography.js │ │ └── package.json ├── reducers │ ├── alerts.js │ ├── auth.js │ ├── index.js │ ├── navigation.js │ └── register.js ├── serviceWorker.js └── styles │ ├── _auth.scss │ ├── _base.scss │ ├── _general.scss │ ├── _mixins.scss │ ├── _overrides.scss │ ├── _theme-variables.scss │ ├── _utils.scss │ ├── _variables.scss │ ├── app.scss │ └── theme.scss ├── static.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/changelog.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/asset-manifest.json -------------------------------------------------------------------------------- /docs/demo/grid/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/demo/grid/autoload.php -------------------------------------------------------------------------------- /docs/demo/grid/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/demo/grid/default.php -------------------------------------------------------------------------------- /docs/demo/grid/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/demo/grid/news.php -------------------------------------------------------------------------------- /docs/demo/grid/shares.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/demo/grid/shares.php -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/images/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/images/people/a1.jpg -------------------------------------------------------------------------------- /docs/images/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/images/people/a2.jpg -------------------------------------------------------------------------------- /docs/images/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/images/people/a3.jpg -------------------------------------------------------------------------------- /docs/images/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/images/people/a4.jpg -------------------------------------------------------------------------------- /docs/images/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/images/people/a5.jpg -------------------------------------------------------------------------------- /docs/images/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/images/people/a6.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/precache-manifest.d275839bd6b281c54747ef140ca30adb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/precache-manifest.d275839bd6b281c54747ef140ca30adb.js -------------------------------------------------------------------------------- /docs/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/service-worker.js -------------------------------------------------------------------------------- /docs/tables/css/2.566e667f.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/css/2.566e667f.chunk.css -------------------------------------------------------------------------------- /docs/tables/css/2.566e667f.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/css/2.566e667f.chunk.css.map -------------------------------------------------------------------------------- /docs/tables/css/main.40738c65.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/css/main.40738c65.chunk.css -------------------------------------------------------------------------------- /docs/tables/css/main.40738c65.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/css/main.40738c65.chunk.css.map -------------------------------------------------------------------------------- /docs/tables/js/2.07185f54.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/js/2.07185f54.chunk.js -------------------------------------------------------------------------------- /docs/tables/js/main.da70b71d.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/js/main.da70b71d.chunk.js -------------------------------------------------------------------------------- /docs/tables/js/runtime~main.5fe9fcb5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/js/runtime~main.5fe9fcb5.js -------------------------------------------------------------------------------- /docs/tables/media/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/1.png -------------------------------------------------------------------------------- /docs/tables/media/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/2.png -------------------------------------------------------------------------------- /docs/tables/media/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/3.png -------------------------------------------------------------------------------- /docs/tables/media/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/4.png -------------------------------------------------------------------------------- /docs/tables/media/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/5.png -------------------------------------------------------------------------------- /docs/tables/media/Arrow 5.5f6347ea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Arrow 5.5f6347ea.svg -------------------------------------------------------------------------------- /docs/tables/media/Arrow 6.bc82bf17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Arrow 6.bc82bf17.svg -------------------------------------------------------------------------------- /docs/tables/media/Charts_filled.03aeae60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Charts_filled.03aeae60.svg -------------------------------------------------------------------------------- /docs/tables/media/Charts_outlined.64e593d5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Charts_outlined.64e593d5.svg -------------------------------------------------------------------------------- /docs/tables/media/Core_filled.2d61b796.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Core_filled.2d61b796.svg -------------------------------------------------------------------------------- /docs/tables/media/Core_outlined.43f7583b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Core_outlined.43f7583b.svg -------------------------------------------------------------------------------- /docs/tables/media/Documentation_filled.53a773a4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Documentation_filled.53a773a4.svg -------------------------------------------------------------------------------- /docs/tables/media/Documentation_outlined.a4d63b9b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Documentation_outlined.a4d63b9b.svg -------------------------------------------------------------------------------- /docs/tables/media/E-commerce_filled.3856032e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/E-commerce_filled.3856032e.svg -------------------------------------------------------------------------------- /docs/tables/media/E-commerce_outlined.b677bb71.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/E-commerce_outlined.b677bb71.svg -------------------------------------------------------------------------------- /docs/tables/media/Email_filled.0208dadb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Email_filled.0208dadb.svg -------------------------------------------------------------------------------- /docs/tables/media/Email_outlined.c345fb38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Email_outlined.c345fb38.svg -------------------------------------------------------------------------------- /docs/tables/media/Flaticon.686496bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Flaticon.686496bc.svg -------------------------------------------------------------------------------- /docs/tables/media/Flaticon.76ed06ab.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Flaticon.76ed06ab.woff -------------------------------------------------------------------------------- /docs/tables/media/Flaticon.90bc8831.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Flaticon.90bc8831.ttf -------------------------------------------------------------------------------- /docs/tables/media/Flaticon.96850e10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Flaticon.96850e10.eot -------------------------------------------------------------------------------- /docs/tables/media/Forms_filled.7b0e92b3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Forms_filled.7b0e92b3.svg -------------------------------------------------------------------------------- /docs/tables/media/Forms_outlined.c936a5f1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Forms_outlined.c936a5f1.svg -------------------------------------------------------------------------------- /docs/tables/media/Grid_filled.6b904d8f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Grid_filled.6b904d8f.svg -------------------------------------------------------------------------------- /docs/tables/media/Grid_outlined.63949b05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Grid_outlined.63949b05.svg -------------------------------------------------------------------------------- /docs/tables/media/Logout_filled.4d4d18fd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Logout_filled.4d4d18fd.svg -------------------------------------------------------------------------------- /docs/tables/media/Logout_outlined.91cb8969.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Logout_outlined.91cb8969.svg -------------------------------------------------------------------------------- /docs/tables/media/Maps_filled.579ae3df.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Maps_filled.579ae3df.svg -------------------------------------------------------------------------------- /docs/tables/media/Maps_outlined.1f6a676b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Maps_outlined.1f6a676b.svg -------------------------------------------------------------------------------- /docs/tables/media/Package_filled.d7de0fb9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Package_filled.d7de0fb9.svg -------------------------------------------------------------------------------- /docs/tables/media/Package_outlined.a8fbbef9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Package_outlined.a8fbbef9.svg -------------------------------------------------------------------------------- /docs/tables/media/Profile_filled.d4c42dec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Profile_filled.d4c42dec.svg -------------------------------------------------------------------------------- /docs/tables/media/Profile_outlined.c0a824be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Profile_outlined.c0a824be.svg -------------------------------------------------------------------------------- /docs/tables/media/Settings_filled.b8d88b83.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Settings_filled.b8d88b83.svg -------------------------------------------------------------------------------- /docs/tables/media/Settings_outlined.afa5d5f8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Settings_outlined.afa5d5f8.svg -------------------------------------------------------------------------------- /docs/tables/media/Tables_filled.5e94f36e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Tables_filled.5e94f36e.svg -------------------------------------------------------------------------------- /docs/tables/media/Tables_outlined.a6f53fb7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Tables_outlined.a6f53fb7.svg -------------------------------------------------------------------------------- /docs/tables/media/Typography-dark.1354476e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Typography-dark.1354476e.svg -------------------------------------------------------------------------------- /docs/tables/media/Typography.0e73b9df.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Typography.0e73b9df.svg -------------------------------------------------------------------------------- /docs/tables/media/Typography_filled.1354476e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Typography_filled.1354476e.svg -------------------------------------------------------------------------------- /docs/tables/media/Typography_outlined.0e73b9df.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Typography_outlined.0e73b9df.svg -------------------------------------------------------------------------------- /docs/tables/media/Vector-1.0e63cf90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Vector-1.0e63cf90.svg -------------------------------------------------------------------------------- /docs/tables/media/Vector-2.7e366352.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Vector-2.7e366352.svg -------------------------------------------------------------------------------- /docs/tables/media/Vector-3.5d5d3960.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Vector-3.5d5d3960.svg -------------------------------------------------------------------------------- /docs/tables/media/Vector-4.24e1523a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/Vector-4.24e1523a.svg -------------------------------------------------------------------------------- /docs/tables/media/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/a3.jpg -------------------------------------------------------------------------------- /docs/tables/media/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/a5.jpg -------------------------------------------------------------------------------- /docs/tables/media/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/a6.jpg -------------------------------------------------------------------------------- /docs/tables/media/account.f7f8d087.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/account.f7f8d087.svg -------------------------------------------------------------------------------- /docs/tables/media/arrow-right.8af4bbb3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/arrow-right.8af4bbb3.svg -------------------------------------------------------------------------------- /docs/tables/media/caret-active.59e80c76.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/caret-active.59e80c76.svg -------------------------------------------------------------------------------- /docs/tables/media/caret.55985359.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/caret.55985359.svg -------------------------------------------------------------------------------- /docs/tables/media/dark-dashboard.1414625f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/dark-dashboard.1414625f.svg -------------------------------------------------------------------------------- /docs/tables/media/error-page-img.b96e4579.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/error-page-img.b96e4579.svg -------------------------------------------------------------------------------- /docs/tables/media/fontawesome-webfont.674f50d2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/fontawesome-webfont.674f50d2.eot -------------------------------------------------------------------------------- /docs/tables/media/fontawesome-webfont.acf3dcb7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/fontawesome-webfont.acf3dcb7.svg -------------------------------------------------------------------------------- /docs/tables/media/fontawesome-webfont.af7ae505.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/fontawesome-webfont.af7ae505.woff2 -------------------------------------------------------------------------------- /docs/tables/media/fontawesome-webfont.b06871f2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/fontawesome-webfont.b06871f2.ttf -------------------------------------------------------------------------------- /docs/tables/media/fontawesome-webfont.fee66e71.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/fontawesome-webfont.fee66e71.woff -------------------------------------------------------------------------------- /docs/tables/media/glyphicons-halflings-regular.448c34a5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/glyphicons-halflings-regular.448c34a5.woff2 -------------------------------------------------------------------------------- /docs/tables/media/glyphicons-halflings-regular.d41d8cd9.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/tables/media/glyphicons-halflings-regular.f4769f9b.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/glyphicons-halflings-regular.f4769f9b.eot -------------------------------------------------------------------------------- /docs/tables/media/glyphicons-halflings-regular.f7214668.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/glyphicons-halflings-regular.f7214668.svg -------------------------------------------------------------------------------- /docs/tables/media/glyphicons-halflings-regular.fa277232.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/glyphicons-halflings-regular.fa277232.woff -------------------------------------------------------------------------------- /docs/tables/media/light-dashboard.91829f1b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/light-dashboard.91829f1b.svg -------------------------------------------------------------------------------- /docs/tables/media/light-notify.c9c38975.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/light-notify.c9c38975.svg -------------------------------------------------------------------------------- /docs/tables/media/line-awesome.131b7f1e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/line-awesome.131b7f1e.svg -------------------------------------------------------------------------------- /docs/tables/media/line-awesome.3f85d803.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/line-awesome.3f85d803.eot -------------------------------------------------------------------------------- /docs/tables/media/line-awesome.452a5b42.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/line-awesome.452a5b42.woff2 -------------------------------------------------------------------------------- /docs/tables/media/line-awesome.4d42f5f0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/line-awesome.4d42f5f0.ttf -------------------------------------------------------------------------------- /docs/tables/media/line-awesome.8b129059.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/line-awesome.8b129059.woff -------------------------------------------------------------------------------- /docs/tables/media/logo.58bf0b70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/logo.58bf0b70.svg -------------------------------------------------------------------------------- /docs/tables/media/logout.f0f095ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/logout.f0f095ef.svg -------------------------------------------------------------------------------- /docs/tables/media/messages-filled.49ad4d1e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/messages-filled.49ad4d1e.svg -------------------------------------------------------------------------------- /docs/tables/media/messages.42686513.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/messages.42686513.svg -------------------------------------------------------------------------------- /docs/tables/media/notify.1de68cd8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/notify.1de68cd8.svg -------------------------------------------------------------------------------- /docs/tables/media/orders.f7ed3ab7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/orders.f7ed3ab7.svg -------------------------------------------------------------------------------- /docs/tables/media/search.477f8f19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/search.477f8f19.svg -------------------------------------------------------------------------------- /docs/tables/media/settings.30925f5d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/settings.30925f5d.svg -------------------------------------------------------------------------------- /docs/tables/media/signinImg.b419c9ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/signinImg.b419c9ef.svg -------------------------------------------------------------------------------- /docs/tables/media/signupImg.506bfe1d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/signupImg.506bfe1d.svg -------------------------------------------------------------------------------- /docs/tables/media/smileImg.568ca3eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/smileImg.568ca3eb.svg -------------------------------------------------------------------------------- /docs/tables/media/stocks.e619d9fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/stocks.e619d9fb.svg -------------------------------------------------------------------------------- /docs/tables/media/stocksDown.66992d2e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/stocksDown.66992d2e.svg -------------------------------------------------------------------------------- /docs/tables/media/tables-dark.5e94f36e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/tables-dark.5e94f36e.svg -------------------------------------------------------------------------------- /docs/tables/media/tables.a6f53fb7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/tables.a6f53fb7.svg -------------------------------------------------------------------------------- /docs/tables/media/total-sale.9730d62b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/total-sale.9730d62b.svg -------------------------------------------------------------------------------- /docs/tables/media/ui elements_filled.727a55c8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/ui elements_filled.727a55c8.svg -------------------------------------------------------------------------------- /docs/tables/media/ui elements_outlined.e7a04833.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/ui elements_outlined.e7a04833.svg -------------------------------------------------------------------------------- /docs/tables/media/ui-elements-dark.727a55c8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/ui-elements-dark.727a55c8.svg -------------------------------------------------------------------------------- /docs/tables/media/ui-elements.e7a04833.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/ui-elements.e7a04833.svg -------------------------------------------------------------------------------- /docs/tables/media/usersImg.d44327ac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/usersImg.d44327ac.svg -------------------------------------------------------------------------------- /docs/tables/media/widget-menu.b2e371d9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/docs/tables/media/widget-menu.b2e371d9.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/demo/grid/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/demo/grid/autoload.php -------------------------------------------------------------------------------- /public/demo/grid/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/demo/grid/default.php -------------------------------------------------------------------------------- /public/demo/grid/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/demo/grid/news.php -------------------------------------------------------------------------------- /public/demo/grid/shares.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/demo/grid/shares.php -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/images/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/images/people/a1.jpg -------------------------------------------------------------------------------- /public/images/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/images/people/a2.jpg -------------------------------------------------------------------------------- /public/images/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/images/people/a3.jpg -------------------------------------------------------------------------------- /public/images/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/images/people/a4.jpg -------------------------------------------------------------------------------- /public/images/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/images/people/a5.jpg -------------------------------------------------------------------------------- /public/images/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/images/people/a6.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/actions/README.md -------------------------------------------------------------------------------- /src/actions/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/actions/alerts.js -------------------------------------------------------------------------------- /src/actions/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/actions/layout.js -------------------------------------------------------------------------------- /src/actions/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/actions/navigation.js -------------------------------------------------------------------------------- /src/actions/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/actions/register.js -------------------------------------------------------------------------------- /src/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/actions/user.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/BreadcrumbHistory/BreadcrumbHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/BreadcrumbHistory/BreadcrumbHistory.js -------------------------------------------------------------------------------- /src/components/BreadcrumbHistory/BreadcrumbHistory.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/BreadcrumbHistory/BreadcrumbHistory.module.scss -------------------------------------------------------------------------------- /src/components/BreadcrumbHistory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/BreadcrumbHistory/package.json -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Header/Header.module.scss -------------------------------------------------------------------------------- /src/components/Header/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Header/package.json -------------------------------------------------------------------------------- /src/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Layout/Layout.js -------------------------------------------------------------------------------- /src/components/Layout/Layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Layout/Layout.module.scss -------------------------------------------------------------------------------- /src/components/Layout/Layout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Layout/Layout.test.js -------------------------------------------------------------------------------- /src/components/Layout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Layout/package.json -------------------------------------------------------------------------------- /src/components/Loader/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Loader/Loader.js -------------------------------------------------------------------------------- /src/components/Loader/Loader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Loader/Loader.module.scss -------------------------------------------------------------------------------- /src/components/Loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Loader/package.json -------------------------------------------------------------------------------- /src/components/Notifications/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/Notifications.js -------------------------------------------------------------------------------- /src/components/Notifications/Notifications.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/Notifications.module.scss -------------------------------------------------------------------------------- /src/components/Notifications/notifications-demo/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/notifications-demo/Account.js -------------------------------------------------------------------------------- /src/components/Notifications/notifications-demo/ListGroup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/notifications-demo/ListGroup.module.scss -------------------------------------------------------------------------------- /src/components/Notifications/notifications-demo/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/notifications-demo/Messages.js -------------------------------------------------------------------------------- /src/components/Notifications/notifications-demo/NewNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/notifications-demo/NewNotifications.js -------------------------------------------------------------------------------- /src/components/Notifications/notifications-demo/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/notifications-demo/Notifications.js -------------------------------------------------------------------------------- /src/components/Notifications/notifications-demo/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/notifications-demo/Progress.js -------------------------------------------------------------------------------- /src/components/Notifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Notifications/package.json -------------------------------------------------------------------------------- /src/components/Sidebar/LinksGroup/LinksGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sidebar/LinksGroup/LinksGroup.js -------------------------------------------------------------------------------- /src/components/Sidebar/LinksGroup/LinksGroup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sidebar/LinksGroup/LinksGroup.module.scss -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sidebar/Sidebar.module.scss -------------------------------------------------------------------------------- /src/components/Sidebar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sidebar/package.json -------------------------------------------------------------------------------- /src/components/Skycon/Skycon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Skycon/Skycon.js -------------------------------------------------------------------------------- /src/components/Skycon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Skycon/package.json -------------------------------------------------------------------------------- /src/components/Sparklines/Sparklines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sparklines/Sparklines.js -------------------------------------------------------------------------------- /src/components/Sparklines/Sparklines.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sparklines/Sparklines.scss -------------------------------------------------------------------------------- /src/components/Sparklines/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Sparklines/package.json -------------------------------------------------------------------------------- /src/components/Widget/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Widget/Widget.js -------------------------------------------------------------------------------- /src/components/Widget/Widget.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Widget/Widget.module.scss -------------------------------------------------------------------------------- /src/components/Widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/components/Widget/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/config.js -------------------------------------------------------------------------------- /src/core/Bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/core/Bundle.js -------------------------------------------------------------------------------- /src/core/screenHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/core/screenHelper.js -------------------------------------------------------------------------------- /src/core/withMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/core/withMeta.js -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /src/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /src/fonts/font-awesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/font-awesome/FontAwesome.otf -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/font-awesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/font-awesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/images/Arrow 5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Arrow 5.svg -------------------------------------------------------------------------------- /src/images/Arrow 6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Arrow 6.svg -------------------------------------------------------------------------------- /src/images/Typography-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Typography-dark.svg -------------------------------------------------------------------------------- /src/images/Typography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Typography.svg -------------------------------------------------------------------------------- /src/images/Vector-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Vector-1.svg -------------------------------------------------------------------------------- /src/images/Vector-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Vector-2.svg -------------------------------------------------------------------------------- /src/images/Vector-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Vector-3.svg -------------------------------------------------------------------------------- /src/images/Vector-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/Vector-4.svg -------------------------------------------------------------------------------- /src/images/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/account.svg -------------------------------------------------------------------------------- /src/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/arrow-right.svg -------------------------------------------------------------------------------- /src/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/avatar.png -------------------------------------------------------------------------------- /src/images/caret-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/caret-active.svg -------------------------------------------------------------------------------- /src/images/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/caret.svg -------------------------------------------------------------------------------- /src/images/dark-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/dark-dashboard.svg -------------------------------------------------------------------------------- /src/images/dark-extra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/dark-extra.svg -------------------------------------------------------------------------------- /src/images/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/dashboard.svg -------------------------------------------------------------------------------- /src/images/documentation/dribble-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/dribble-logo.svg -------------------------------------------------------------------------------- /src/images/documentation/facebook-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/facebook-logo.svg -------------------------------------------------------------------------------- /src/images/documentation/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/github-logo.svg -------------------------------------------------------------------------------- /src/images/documentation/instagram-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/instagram-logo.svg -------------------------------------------------------------------------------- /src/images/documentation/linkedin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/linkedin-logo.svg -------------------------------------------------------------------------------- /src/images/documentation/sing-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/sing-screenshot.jpg -------------------------------------------------------------------------------- /src/images/documentation/twitter-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/documentation/twitter-logo.svg -------------------------------------------------------------------------------- /src/images/error-page-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/error-page-img.svg -------------------------------------------------------------------------------- /src/images/icons/Charts_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Charts_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Charts_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Charts_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Core_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Core_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Core_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Core_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Dashboard_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Dashboard_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Dashboard_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Dashboard_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Documentation_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Documentation_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Documentation_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Documentation_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/E-commerce_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/E-commerce_filled.svg -------------------------------------------------------------------------------- /src/images/icons/E-commerce_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/E-commerce_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Emai_nav_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Emai_nav_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Emai_nav_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Emai_nav_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Email_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Email_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Email_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Email_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Extra_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Extra_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Extra_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Extra_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Forms_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Forms_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Forms_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Forms_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Grid_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Grid_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Grid_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Grid_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Logout_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Logout_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Logout_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Logout_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Maps_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Maps_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Maps_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Maps_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Package_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Package_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Package_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Package_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Profile_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Profile_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Profile_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Profile_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Settings_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Settings_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Settings_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Settings_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Tables_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Tables_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Tables_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Tables_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/Typography_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Typography_filled.svg -------------------------------------------------------------------------------- /src/images/icons/Typography_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/Typography_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/dots.svg -------------------------------------------------------------------------------- /src/images/icons/notification_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/notification_filled.svg -------------------------------------------------------------------------------- /src/images/icons/notification_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/notification_outlined.svg -------------------------------------------------------------------------------- /src/images/icons/ui elements_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/ui elements_filled.svg -------------------------------------------------------------------------------- /src/images/icons/ui elements_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/icons/ui elements_outlined.svg -------------------------------------------------------------------------------- /src/images/light-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/light-dashboard.svg -------------------------------------------------------------------------------- /src/images/light-extra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/light-extra.svg -------------------------------------------------------------------------------- /src/images/light-notify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/light-notify.svg -------------------------------------------------------------------------------- /src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/logo.svg -------------------------------------------------------------------------------- /src/images/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/logout.svg -------------------------------------------------------------------------------- /src/images/messages-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/messages-filled.svg -------------------------------------------------------------------------------- /src/images/messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/messages.svg -------------------------------------------------------------------------------- /src/images/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/microsoft.png -------------------------------------------------------------------------------- /src/images/notification-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/notification-dark.svg -------------------------------------------------------------------------------- /src/images/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/notification.svg -------------------------------------------------------------------------------- /src/images/notify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/notify.svg -------------------------------------------------------------------------------- /src/images/orders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/orders.svg -------------------------------------------------------------------------------- /src/images/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/a1.jpg -------------------------------------------------------------------------------- /src/images/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/a2.jpg -------------------------------------------------------------------------------- /src/images/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/a3.jpg -------------------------------------------------------------------------------- /src/images/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/a4.jpg -------------------------------------------------------------------------------- /src/images/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/a5.jpg -------------------------------------------------------------------------------- /src/images/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/a6.jpg -------------------------------------------------------------------------------- /src/images/people/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/n1.png -------------------------------------------------------------------------------- /src/images/people/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/n2.png -------------------------------------------------------------------------------- /src/images/people/n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/n3.png -------------------------------------------------------------------------------- /src/images/people/n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/n4.png -------------------------------------------------------------------------------- /src/images/people/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/p1.png -------------------------------------------------------------------------------- /src/images/people/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/p2.png -------------------------------------------------------------------------------- /src/images/people/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/p3.png -------------------------------------------------------------------------------- /src/images/people/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/people/p4.png -------------------------------------------------------------------------------- /src/images/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/pie-chart.svg -------------------------------------------------------------------------------- /src/images/react-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/react-logo.svg -------------------------------------------------------------------------------- /src/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/search.svg -------------------------------------------------------------------------------- /src/images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/settings.svg -------------------------------------------------------------------------------- /src/images/signinImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/signinImg.svg -------------------------------------------------------------------------------- /src/images/signupImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/signupImg.svg -------------------------------------------------------------------------------- /src/images/smileImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/smileImg.svg -------------------------------------------------------------------------------- /src/images/stocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/stocks.svg -------------------------------------------------------------------------------- /src/images/stocksDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/stocksDown.svg -------------------------------------------------------------------------------- /src/images/tables-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables-dark.svg -------------------------------------------------------------------------------- /src/images/tables.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables.svg -------------------------------------------------------------------------------- /src/images/tables/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables/1.png -------------------------------------------------------------------------------- /src/images/tables/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables/2.png -------------------------------------------------------------------------------- /src/images/tables/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables/3.png -------------------------------------------------------------------------------- /src/images/tables/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables/4.png -------------------------------------------------------------------------------- /src/images/tables/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/tables/5.png -------------------------------------------------------------------------------- /src/images/theme-change-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/theme-change-img.svg -------------------------------------------------------------------------------- /src/images/total-sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/total-sale.svg -------------------------------------------------------------------------------- /src/images/ui-elements-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/ui-elements-dark.svg -------------------------------------------------------------------------------- /src/images/ui-elements.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/ui-elements.svg -------------------------------------------------------------------------------- /src/images/userAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/userAvatar.png -------------------------------------------------------------------------------- /src/images/usersImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/usersImg.svg -------------------------------------------------------------------------------- /src/images/widget-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/images/widget-menu.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/charts/Charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/Charts.js -------------------------------------------------------------------------------- /src/pages/charts/Charts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/Charts.module.scss -------------------------------------------------------------------------------- /src/pages/charts/apex/Apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/apex/Apex.js -------------------------------------------------------------------------------- /src/pages/charts/apex/ApexChart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/apex/ApexChart.module.scss -------------------------------------------------------------------------------- /src/pages/charts/apex/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/apex/mock.js -------------------------------------------------------------------------------- /src/pages/charts/apex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/apex/package.json -------------------------------------------------------------------------------- /src/pages/charts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/config.js -------------------------------------------------------------------------------- /src/pages/charts/echarts/Echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/echarts/Echarts.js -------------------------------------------------------------------------------- /src/pages/charts/echarts/Echarts.scss: -------------------------------------------------------------------------------- 1 | .echarts-for-react { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /src/pages/charts/echarts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/echarts/mock.js -------------------------------------------------------------------------------- /src/pages/charts/echarts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/echarts/package.json -------------------------------------------------------------------------------- /src/pages/charts/highcharts/HighCharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/highcharts/HighCharts.js -------------------------------------------------------------------------------- /src/pages/charts/highcharts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/highcharts/mock.js -------------------------------------------------------------------------------- /src/pages/charts/highcharts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/highcharts/package.json -------------------------------------------------------------------------------- /src/pages/charts/highcharts/sunburstData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/highcharts/sunburstData.js -------------------------------------------------------------------------------- /src/pages/charts/highcharts/usdeur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/highcharts/usdeur.js -------------------------------------------------------------------------------- /src/pages/charts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/mock.js -------------------------------------------------------------------------------- /src/pages/charts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/charts/package.json -------------------------------------------------------------------------------- /src/pages/dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/pages/dashboard/Dashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/dashboard/Dashboard.module.scss -------------------------------------------------------------------------------- /src/pages/dashboard/chartsMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/dashboard/chartsMock.js -------------------------------------------------------------------------------- /src/pages/dashboard/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/dashboard/config.js -------------------------------------------------------------------------------- /src/pages/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/dashboard/package.json -------------------------------------------------------------------------------- /src/pages/error/ErrorPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/error/ErrorPage.js -------------------------------------------------------------------------------- /src/pages/error/ErrorPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/error/ErrorPage.module.scss -------------------------------------------------------------------------------- /src/pages/error/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/error/package.json -------------------------------------------------------------------------------- /src/pages/icons/Icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/icons/Icons.js -------------------------------------------------------------------------------- /src/pages/icons/Icons.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/icons/Icons.module.scss -------------------------------------------------------------------------------- /src/pages/icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/icons/package.json -------------------------------------------------------------------------------- /src/pages/login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/login/Login.js -------------------------------------------------------------------------------- /src/pages/login/Login.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/login/Login.module.scss -------------------------------------------------------------------------------- /src/pages/login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/login/package.json -------------------------------------------------------------------------------- /src/pages/maps/Maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/maps/Maps.js -------------------------------------------------------------------------------- /src/pages/maps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/maps/package.json -------------------------------------------------------------------------------- /src/pages/notifications/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/notifications/Notifications.js -------------------------------------------------------------------------------- /src/pages/notifications/Notifications.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/notifications/Notifications.module.scss -------------------------------------------------------------------------------- /src/pages/notifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/notifications/package.json -------------------------------------------------------------------------------- /src/pages/register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/register/Register.js -------------------------------------------------------------------------------- /src/pages/register/Register.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/register/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/register/package.json -------------------------------------------------------------------------------- /src/pages/tables/Tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/tables/Tables.js -------------------------------------------------------------------------------- /src/pages/tables/Tables.modules.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/tables/Tables.modules.scss -------------------------------------------------------------------------------- /src/pages/tables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/tables/package.json -------------------------------------------------------------------------------- /src/pages/typography/Typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/typography/Typography.js -------------------------------------------------------------------------------- /src/pages/typography/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/pages/typography/package.json -------------------------------------------------------------------------------- /src/reducers/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/reducers/alerts.js -------------------------------------------------------------------------------- /src/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/reducers/auth.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/reducers/navigation.js -------------------------------------------------------------------------------- /src/reducers/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/reducers/register.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/styles/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_auth.scss -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_base.scss -------------------------------------------------------------------------------- /src/styles/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_general.scss -------------------------------------------------------------------------------- /src/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_mixins.scss -------------------------------------------------------------------------------- /src/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_overrides.scss -------------------------------------------------------------------------------- /src/styles/_theme-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_theme-variables.scss -------------------------------------------------------------------------------- /src/styles/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_utils.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/src/styles/theme.scss -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/static.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/one-react-template/HEAD/yarn.lock --------------------------------------------------------------------------------