13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
|
import React, { Component } from 'react'
|
||
|
import { Link } from 'react-router'
|
||
|
|
||
|
import NotificationsHeader from './NotificationsHeader'
|
||
|
|
||
|
class NotificationPage extends Component {
|
||
|
render = () => {
|
||
|
return <NotificationsHeader />
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
export default NotificationPage
|