summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/date_separator.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/date_separator.jsx')
-rw-r--r--webapp/components/post_view/date_separator.jsx32
1 files changed, 0 insertions, 32 deletions
diff --git a/webapp/components/post_view/date_separator.jsx b/webapp/components/post_view/date_separator.jsx
deleted file mode 100644
index 3f5184dbf..000000000
--- a/webapp/components/post_view/date_separator.jsx
+++ /dev/null
@@ -1,32 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import {FormattedDate} from 'react-intl';
-
-export default class DateSeparator extends React.PureComponent {
- static propTypes = {
-
- /*
- * The date to display in the separator
- */
- date: PropTypes.instanceOf(Date)
- }
-
- render() {
- return (
- <div
- className='date-separator'
- >
- <hr className='separator__hr'/>
- <div className='separator__text'>
- <FormattedDate
- value={this.props.date}
- weekday='short'
- month='short'
- day='2-digit'
- year='numeric'
- />
- </div>
- </div>
- );
- }
-}