index.js 630 B

1234567891011121314151617181920212223
  1. import './style.scss';
  2. import React, { PureComponent } from 'react';
  3. export default class Firstaidkz extends PureComponent {
  4. render() {
  5. return (
  6. <div className="firstaidkz">
  7. <img
  8. className="firstaidkz_bg"
  9. src="//dd.unicraft.org/static/branding/firstaidkz/header/bg.png"
  10. role="presentation"
  11. />
  12. <img
  13. className="firstaidkz_img"
  14. src="//dd.unicraft.org/static/branding/firstaidkz/header/img.png"
  15. srcSet="//dd.unicraft.org/static/branding/firstaidkz/header/img@2x.png 2x"
  16. role="presentation"
  17. />
  18. </div>
  19. )
  20. }
  21. }