index.js 367 B

123456789101112
  1. import './style.scss';
  2. import React, { PureComponent } from 'react';
  3. export default class Octopolygraphist extends PureComponent {
  4. render() {
  5. return (
  6. <div className="oktopolygraphist">
  7. <img role="presentation" src="//dd.unicraft.org/static/branding/oktopolygraphist/header/logo.png" className="oktopolygraphist_logo" />
  8. </div>
  9. )
  10. }
  11. }