import React, {useState } from 'react'; import logo from './logo.svg'; import './App.css'; import {Provider, connect} from 'react-redux'; import {actionSearch } from './actions'; import store from './reducers' //import { CounterView, Counter, ConnectedBIGTABLO, ConnectedCounter, ConnectedBigButton } from './components' import {Router, Route, Link, Switch, Redirect} from 'react-router-dom'; import createHistory from "history/createBrowserHistory"; import {actionPosts, actionLogin} from './actions' const history = createHistory() const SearchField = connect(null, {onChange: actionSearch})(({onChange}) => { const [text, setText] = useState('') return ( (setText(e.target.value), onChange(e.target.value))}/> ) }) const Post = ({post}) =>

{post.title}

{post.text}

const PostFeed = ({posts=[]}) =>
{posts && posts.map(p => )}
const CPostFeed = connect(s => ({posts:s.promise.posts && s.promise.posts.payload && s.promise.posts.payload.getPosts}))(PostFeed) const PageMain = () => <> const LoginForm = ({onLogin}) => <> const CLoginForm = connect(null, {onLogin: actionLogin})(LoginForm) const SearchResult = connect(s => (console.log(s), ({payload: s.searchResult && s.searchResult.payload && s.searchResult.payload.payload && s.searchResult.payload.payload.GoodFind})))(({payload}) =>

{console.log(payload)}{payload && payload.map(({_id, name}) =>
{name}
)}

) store.dispatch(actionPosts()) export default () => { return ( ) }