function Standard(){
// more logic is needed in here
return(
// return JSX
);
}
// also called as concise function
const Arrow = () => {
return(
// return JSX
);
}
// without "return" statement
const Arrow = () => ();
My spot for plugin and theme development.
function Standard(){
// more logic is needed in here
return(
// return JSX
);
}
// also called as concise function
const Arrow = () => {
return(
// return JSX
);
}
// without "return" statement
const Arrow = () => ();