6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import styles from "./title.module.css"
|
|
|
|
export default function Title({ children }: React.PropsWithChildren) {
|
|
return <h4 className={styles.title}>{children}</h4>
|
|
}
|