| 1234567891011121314151617181920212223242526272829 |
- import './style.scss';
- import React, { PureComponent } from 'react';
- export default class Freshretailgroup extends PureComponent {
- render() {
- return (
- <div className="freshretailgroup">
- <img
- src="//dd.unicraft.org/static/branding/freshretailgroup/header/logo.png"
- srcSet="//dd.unicraft.org/static/branding/freshretailgroup/header/logo@2x.png 2x"
- className="freshretailgroup_logo"
- role="presentation"
- />
- <img
- src="//dd.unicraft.org/static/branding/freshretailgroup/header/bg1.png"
- className="freshretailgroup_img1"
- role="presentation"
- />
- <img
- src="//dd.unicraft.org/static/branding/freshretailgroup/header/bg2.png"
- className="freshretailgroup_img2"
- role="presentation"
- />
- </div>
- )
- }
- }
|