mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
16 lines
294 B
JavaScript
16 lines
294 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const ColumnSubheading = ({ text }) => {
|
|
return (
|
|
<div className='column-subheading'>
|
|
{text}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ColumnSubheading.propTypes = {
|
|
text: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default ColumnSubheading;
|