mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-11 20:21:10 +00:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import React from 'react';
|
|
|
|
interface Props {
|
|
text: string;
|
|
}
|
|
|
|
const ColumnSubheading: React.FC<Props> = ({ text }) => {
|
|
return <div className='column-subheading'>{text}</div>;
|
|
};
|
|
|
|
export default ColumnSubheading;
|