reza created comments comp

master
Reza_ashrafi 3 years ago
parent abfc08ab40
commit 082d3bf253
  1. 73
      src/components/Comments/index.js
  2. 11
      src/components/Comments/user.svg
  3. 20
      src/redux/data.js

@ -0,0 +1,73 @@
import React from 'react'
import { connect } from 'react-redux';
import userImage from './user.svg';
export const Comments = ({comments}) => {
return (
<div className="w-full flex flex-col">
</div>
)
}
const mapStateToProps = (state) => ({
})
const mapDispatchToProps = {
}
export default connect(mapStateToProps, mapDispatchToProps)(Comments);
Comments.defaultProps = {
comments : [
{
id: 0,
pid: null,
username : 'آرش سامانی',
date : new Date(),
text : 'به زودی می فهمند که اشتباه کرده اند و عظمت هر ملتی بر روی خرابه های وطن خودش میباشد',
userImage : userImage,
rate : 4,
},
{
id: 1,
pid: 0,
username : 'سورنا عابدی',
date : new Date(),
text : 'به زودی می فهمند که اشتباه کرده اند و عظمت هر ملتی بر روی خرابه های وطن خودش میباشد',
userImage : userImage,
rate : 4,
},
{
id: 2,
pid: 1,
username : 'آرش سامانی',
date : new Date(),
text : 'به زودی می فهمند که اشتباه کرده اند و عظمت هر ملتی بر روی خرابه های وطن خودش میباشد',
userImage : userImage,
rate : 4,
},
{
id: 3,
pid: 2,
username : 'آرش سامانی',
date : new Date(),
text : 'به زودی می فهمند که اشتباه کرده اند و عظمت هر ملتی بر روی خرابه های وطن خودش میباشد',
userImage : userImage,
rate : 4,
},
{
id: 4,
pid: 3,
username : 'آرش سامانی',
date : new Date(),
text : 'به زودی می فهمند که اشتباه کرده اند و عظمت هر ملتی بر روی خرابه های وطن خودش میباشد',
userImage : userImage,
rate : 4,
},
],
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 119 KiB

@ -474,8 +474,28 @@ const components = [
name: "Footer",
component: <Footer />,
code: null,
},
},
];
export default components;

Loading…
Cancel
Save