| 123456789101112131415161718192021222324252627 |
- import './style.scss';
- import React, { PureComponent } from 'react';
- export default class Hsep extends PureComponent {
- render() {
- return (
- <div className="hsep">
- <img
- className="hsep_logo"
- src="//dd.unicraft.org/static/branding/hsep/header/logo.png"
- srcSet="//dd.unicraft.org/static/branding/hsep/header/logo@2x.png 2x"
- alt="ЧОУ Высшая Школа Экспертизы и Права"
- role="presentation"
- />
-
- <img
- className="hsep_text"
- src="//dd.unicraft.org/static/branding/hsep/header/text.png"
- srcSet="//dd.unicraft.org/static/branding/hsep/header/text@2x.png 2x"
- role="presentation"
- />
- </div>
- )
- }
- }
|