mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-18 19:19:36 +02:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import classes from './SettingsHeadline.module.css';
|
|
|
|
interface Props {
|
|
text: string;
|
|
}
|
|
|
|
export const SettingsHeadline = (props: Props): JSX.Element => {
|
|
return <h2 className={classes.SettingsHeadline}>{props.text}</h2>;
|
|
};
|