13 lines
No EOL
216 B
TypeScript
13 lines
No EOL
216 B
TypeScript
import styles from "./styles.module.scss"
|
|
|
|
type MainTextProps = {
|
|
text: string;
|
|
}
|
|
|
|
export const MainText = ({text}: MainTextProps) => {
|
|
return (
|
|
<div className={styles.mainText}>
|
|
{text}
|
|
</div>
|
|
)
|
|
} |