Cleaned up Apps component. Delete App redux action. Apps edit mode with functionality do delete and pin apps

This commit is contained in:
unknown
2021-05-13 18:23:12 +02:00
parent 7e540587a5
commit cb0b4b495f
10 changed files with 225 additions and 52 deletions

View File

@@ -12,7 +12,7 @@ import Apps from './components/Apps/Apps';
import Settings from './components/Settings/Settings';
if (localStorage.theme) {
store.dispatch(setTheme(localStorage.theme));
store.dispatch<any>(setTheme(localStorage.theme));
}
const App = (): JSX.Element => {
@@ -29,4 +29,4 @@ const App = (): JSX.Element => {
);
}
export default App;
export default App;