stylist / frontend / src / components / Navbar / Logo / Logo.tsx
Logo.tsx
Raw
import React from 'react';

import s from './Logo.module.scss';

const Logo = () => {
  return (
    <div className={s.logo}>
      <h2>STYLIST</h2>
    </div>
  );
};

export default Logo;