diff --git a/react/src/components/main/walletMain.js b/react/src/components/main/walletMain.js
index 179f0be..d53d560 100644
--- a/react/src/components/main/walletMain.js
+++ b/react/src/components/main/walletMain.js
@@ -3,11 +3,13 @@ import Toaster from '../toaster/toaster';
import AddCoin from '../addcoin/addcoin';
import Login from '../login/login';
import Dashboard from '../dashboard/dashboard';
+import SyncOnly from '../dashboard/syncOnly';
class WalletMain extends React.Component {
render() {
return (
+
diff --git a/react/src/reducers/index.js b/react/src/reducers/index.js
index e69c68b..e18c9b1 100644
--- a/react/src/reducers/index.js
+++ b/react/src/reducers/index.js
@@ -9,6 +9,7 @@ import { ActiveCoin } from './activeCoin';
import { Atomic } from './atomic';
import { Settings } from './settings';
import { Interval } from './interval';
+import { SyncOnly } from './syncOnly';
const rootReducer = combineReducers({
AddCoin,
@@ -19,6 +20,7 @@ const rootReducer = combineReducers({
Atomic,
Settings,
Interval,
+ SyncOnly,
routing: routerReducer,
});
diff --git a/react/src/styles/index.scss b/react/src/styles/index.scss
index d3ded81..cd16870 100644
--- a/react/src/styles/index.scss
+++ b/react/src/styles/index.scss
@@ -154,6 +154,17 @@ body {
height: 100%;
}
+.display-sync-only-coins-toggle {
+ cursor: pointer;
+}
+.display-sync-only-coins-toggle:hover {
+ color: #ffa726;
+}
+
+.sync-only-forks {
+ color: #757575;
+}
+
/*.toaster .single-toast:nth-child(0) {
bottom: 12px;
}