1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-20 03:59:36 +02:00
flame/client/src/components/UI/Headlines/SectionHeadline/SectionHeadline.tsx

13 lines
278 B
TypeScript
Raw Normal View History

2021-05-09 18:36:55 +02:00
import classes from './SectionHeadline.module.css';
interface ComponentProps {
title: string;
}
const SectionHeadline = (props: ComponentProps): JSX.Element => {
return (
<h2 className={classes.SectionHeadline}>{props.title}</h2>
)
}
export default SectionHeadline;