index.js 766 B

123456789101112131415161718192021222324252627
  1. import './style.scss';
  2. import React, { PureComponent } from 'react';
  3. export default class Hsep extends PureComponent {
  4. render() {
  5. return (
  6. <div className="hsep">
  7. <img
  8. className="hsep_logo"
  9. src="//dd.unicraft.org/static/branding/hsep/header/logo.png"
  10. srcSet="//dd.unicraft.org/static/branding/hsep/header/logo@2x.png 2x"
  11. alt="ЧОУ Высшая Школа Экспертизы и Права"
  12. role="presentation"
  13. />
  14. <img
  15. className="hsep_text"
  16. src="//dd.unicraft.org/static/branding/hsep/header/text.png"
  17. srcSet="//dd.unicraft.org/static/branding/hsep/header/text@2x.png 2x"
  18. role="presentation"
  19. />
  20. </div>
  21. )
  22. }
  23. }