index.js 370 B

12345678910111213141516
  1. import './style.scss';
  2. import React, { PureComponent } from 'react';
  3. export default class Waithai extends PureComponent {
  4. render() {
  5. return (
  6. <div className="waithai">
  7. <img
  8. src="//dd.unicraft.org/static/branding/waithai/header2/logo.png"
  9. className="waithai_logo"
  10. role="presentation"
  11. />
  12. </div>
  13. )
  14. }
  15. }