1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 21:29:37 +02:00

Bookmarks Form

This commit is contained in:
unknown 2021-05-24 11:51:05 +02:00
parent 4e89e4c568
commit 38edb76929
5 changed files with 189 additions and 8 deletions

View file

@ -3,10 +3,10 @@ import { Link } from 'react-router-dom';
// Redux
import { connect } from 'react-redux';
import { getApps, pinApp, addApp } from '../../store/actions';
import { getApps } from '../../store/actions';
// Typescript
import { App, GlobalState, NewApp } from '../../interfaces';
import { App, GlobalState } from '../../interfaces';
// CSS
import classes from './Apps.module.css';
@ -25,7 +25,6 @@ import AppTable from './AppTable/AppTable';
interface ComponentProps {
getApps: Function;
addApp: (formData: NewApp) => void;
apps: App[];
loading: boolean;
}
@ -120,4 +119,4 @@ const mapStateToProps = (state: GlobalState) => {
}
}
export default connect(mapStateToProps, { getApps, addApp })(Apps);
export default connect(mapStateToProps, { getApps })(Apps);