images
1 year ago
notification
9 months ago
query
1 year ago
state
1 year ago
index.js
1 year ago
index.scss
1 year ago
notification-icon.jsx
1 year ago
notifications-container.jsx
1 year ago
notifications.jsx
1 year ago
notifications-container.jsx
18 lines
| 1 | import { NotificationsList } from './notification/notifications-list'; |
| 2 | import { NotificationsHead } from './notification/notifications-head'; |
| 3 | import { NotificationsFooter } from './notification/notifications-footer'; |
| 4 | |
| 5 | export function NotificationsContainer() { |
| 6 | return ( |
| 7 | <div className="notification-container"> |
| 8 | <div className="notification-header"> |
| 9 | <NotificationsHead /> |
| 10 | </div> |
| 11 | <NotificationsList /> |
| 12 | <div className="notification-footer"> |
| 13 | <NotificationsFooter /> |
| 14 | </div> |
| 15 | </div> |
| 16 | ); |
| 17 | } |
| 18 |