2019-11-14 21:48:48 +03:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
|
|
|
|
export default class sotoTile extends Component {
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-02-22 05:58:29 +03:00
|
|
|
<div className={"w-100 h-100 relative bg-black bg-gray0-d " +
|
|
|
|
"ba b--black b--gray1-d"}>
|
2020-02-06 02:16:56 +03:00
|
|
|
<a className="w-100 h-100 db bn" href="/~dojo">
|
|
|
|
<p className="white f9 absolute"
|
|
|
|
style={{ left: 8, top: 8 }}>
|
2019-11-14 21:48:48 +03:00
|
|
|
Dojo
|
|
|
|
</p>
|
2019-11-20 17:41:28 +03:00
|
|
|
<img src="~dojo/img/Tile.png"
|
2019-11-14 21:48:48 +03:00
|
|
|
className="absolute"
|
2020-02-06 02:16:56 +03:00
|
|
|
style={{
|
|
|
|
left: 39,
|
|
|
|
top: 39,
|
|
|
|
height: 48,
|
|
|
|
width: 48
|
|
|
|
}}
|
2019-11-14 21:48:48 +03:00
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
window.sotoTile = sotoTile;
|