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
594 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 max-w-[420px] w-1/3">ReligiousTimes</div>
3 years ago
)
}
export default ReligiousTimes
ReligiousTimes.defaultProps = {
hours: {
morningTime: "5:03",
sunriseTime: "6:27",
noonTime: "12:15",
sunsetTime: "18:05",
maghribTime: "18:23",
midnightTime: "23:34",
},
}