First Blog Post
· One min read
- Namaz
- Picnic
- Book
Namaz is the key of success for both duniya and akhirah.
Drive into the world of enjoyment.
Drive into the world of knowledge.
Codeblock
function Greeting(props){
return <p>Welcome, {props.userName}</p>
}
export default Greeting;
Highlight Lines
function highlightedText(highlight){
if(highlight)
{
return "This is a highlighted text!";
}
return "Nothing highlighted!";
}

