mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 23:21:30 +08:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
import React from 'react';
|
|
|
|
const NotificationImage = ({type_of}) => {
|
|
return(
|
|
<div className="text-center">
|
|
<span className="assignment">
|
|
<i className="fa fa-newspaper-o" />
|
|
</span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default NotificationImage;
|