mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 03:59:36 +02:00
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
|
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;
|