mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 14:20:47 +08:00
ab6c03c0cc
- Use JSX for templates - Docblock/comment everything - Mostly passes ESLint (still some work to do) - Lots of renaming, refactoring, etc. CSS hasn't been updated yet.
13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
/**
|
|
* The `username` helper displays a user's username in a <span class="username">
|
|
* tag. If the user doesn't exist, the username will be displayed as [deleted].
|
|
*
|
|
* @param {User} user
|
|
* @return {Object}
|
|
*/
|
|
export default function username(user) {
|
|
const name = (user && user.username()) || '[deleted]';
|
|
|
|
return <span className="username">{name}</span>;
|
|
}
|