stylist / frontend / src / components / Title / Title.tsx
Title.tsx
Raw
import s from './Title.module.scss';

const Title = ({ text }: { text: string }) => {
  return <div className={s.title}>{text}</div>;
};

export default Title;