Skip to main content
Yangshun Tay
Ex-Meta Staff Engineer, Co-founder GreatFrontEnd
View all authors

First Blog Post

· One min read
Sébastien Lorber
Docusaurus maintainer
Yangshun Tay
Ex-Meta Staff Engineer, Co-founder GreatFrontEnd

Namaz is the key of success for both duniya and akhirah.

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!";
}