Home.js 297 B

1234567891011121314
  1. import React from "react";
  2. import {connect} from 'react-redux';
  3. import {useState} from "react";
  4. import {actionTypeAd} from '../actions'
  5. export const Home = (_id,owner) => {
  6. return (
  7. <h1>home</h1>
  8. )
  9. }
  10. const TypeAd = connect(null,{_id: actionTypeAd})(Home)
  11. export default TypeAd