index.js 512 B

123456789101112131415161718
  1. import './style.scss';
  2. import React, { PureComponent } from 'react';
  3. export default class Firstdpo extends PureComponent {
  4. render() {
  5. return (
  6. <div className="firstdpo">
  7. <img
  8. className="firstdpo_logo"
  9. src="//dd.unicraft.org/static/branding/firstdpo/header/logo.png"
  10. srcSet="//dd.unicraft.org/static/branding/firstdpo/header/logo@2x.png 2x"
  11. alt="Первый Учебный Центр"
  12. role="presentation"
  13. />
  14. </div>
  15. )
  16. }
  17. }