You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
250 B
React

1 year ago
// Strict Mode
"use strict";
// Styles
import styles from "./title.module.css";
// Title
export default function Title ( props ) {
return (
<div className = { styles.title }>
<h1>{ props.title }</h1>
</div>
);
};