mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-26 06:19:36 +02:00
Apps grid
This commit is contained in:
parent
7199e296b8
commit
0502a653ac
12 changed files with 171 additions and 13 deletions
|
@ -0,0 +1,13 @@
|
|||
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;
|
Loading…
Add table
Add a link
Reference in a new issue