chore: rename Dirs
This commit is contained in:
11
src/Element/UnreadCount.tsx
Normal file
11
src/Element/UnreadCount.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import "./UnreadCount.css"
|
||||
|
||||
const UnreadCount = ({ unread }: { unread: number }) => {
|
||||
return (
|
||||
<span className={`pill ${unread > 0 ? 'unread' : ''}`}>
|
||||
{unread}
|
||||
</span>
|
||||
)
|
||||
}
|
||||
|
||||
export default UnreadCount
|
Reference in New Issue
Block a user