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