You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
579 B
30 lines
579 B
3 years ago
|
import React from 'react'
|
||
|
|
||
|
const times = {
|
||
|
morning: "صبح",
|
||
|
sunrise: "طلوع",
|
||
|
noon: "ظهر",
|
||
|
sunset: "غروب",
|
||
|
maghrib: "مغرب",
|
||
|
midnight: "نیمه شب",
|
||
|
|
||
|
}
|
||
|
|
||
|
const ReligiousTimes = () => {
|
||
|
return (
|
||
|
<div className="bg-white shadow rounded-md w-96">ReligiousTimes</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ReligiousTimes
|
||
|
|
||
|
ReligiousTimes.defaultProps = {
|
||
|
hours: {
|
||
|
morningTime: "5:03",
|
||
|
sunriseTime: "6:27",
|
||
|
noonTime: "12:15",
|
||
|
sunsetTime: "18:05",
|
||
|
maghribTime: "18:23",
|
||
|
midnightTime: "23:34",
|
||
|
},
|
||
|
}
|