asenka0301/frontend-bootcamp-project-12

View on GitHub
frontend/src/components/Img.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import chatLogo from '../images/chat-logo.svg';

const Img = () => (
  <div className="imgContainer">
    <img className="img-fluid" src={chatLogo} alt="logo" width="250" height="250" />
  </div>
);

export default Img;