parent
45cfc25609
commit
839eaa66cc
3 changed files with 52 additions and 29 deletions
@ -1,20 +1,56 @@ |
|||||||
import React from "react"; |
import React from "react"; |
||||||
|
|
||||||
const Month = () => { |
const Month = ({ items }) => { |
||||||
return <div>Month</div>; |
return ( |
||||||
|
<div className="flex flex-col"> |
||||||
|
{items.map((item, index) => ( |
||||||
|
<span className="text-xs my-2" key={index}> |
||||||
|
{item.month} |
||||||
|
</span> |
||||||
|
))} |
||||||
|
</div> |
||||||
|
); |
||||||
}; |
}; |
||||||
|
|
||||||
export default Month; |
export default Month; |
||||||
|
|
||||||
Month.defaultProps = { |
Month.defaultProps = { |
||||||
items: { |
items: [ |
||||||
weight: "1 کیلوگرم", |
{ |
||||||
pageNumber: "400 صفحه", |
month: "فروردین", |
||||||
pageType: "گلاسه", |
}, |
||||||
bookNumber: "124900985340561870112312499", |
{ |
||||||
publisher: "رزمندگان", |
month: "اردیبهشت", |
||||||
author: "یک نویسنده گمنام", |
}, |
||||||
bookType: "خشتی", |
{ |
||||||
publishedYear: "1399", |
month: "خرداد", |
||||||
}, |
}, |
||||||
|
{ |
||||||
|
month: "تیر", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "مرداد", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "شهریور", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "مهر", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "آبان", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "آذر", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "دی", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "بهمن", |
||||||
|
}, |
||||||
|
{ |
||||||
|
month: "اسفند", |
||||||
|
}, |
||||||
|
], |
||||||
}; |
}; |
||||||
|
Loading…
Reference in new issue