]> cat aescling's git repositories - mastodon.git/blob - app/javascript/mastodon/features/ui/components/column_subheading.js
Fix audio attachments opening in video modal from media tab in web UI (#12056)
[mastodon.git] / app / javascript / mastodon / features / ui / components / column_subheading.js
1 import React from 'react';
2 import PropTypes from 'prop-types';
3
4 const ColumnSubheading = ({ text }) => {
5 return (
6 <div className='column-subheading'>
7 {text}
8 </div>
9 );
10 };
11
12 ColumnSubheading.propTypes = {
13 text: PropTypes.string.isRequired,
14 };
15
16 export default ColumnSubheading;
This page took 0.100539 seconds and 5 git commands to generate.