import React from 'react'; import styles from './title.module.scss'; export default function Title({ children }: { children: string }): JSX.Element { return

{children}

; }