2020-05-10 04:24:46 -07:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
|
2020-05-10 04:30:23 -07:00
|
|
|
export default class barttileTile extends Component {
|
2020-05-10 04:24:46 -07:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="w-100 h-100 relative bg-white bg-gray0-d ba b--black b--gray1-d">
|
2020-05-10 04:30:23 -07:00
|
|
|
<a className="w-100 h-100 db pa2 no-underline" href="/~barttile">
|
|
|
|
<p className="black white-d absolute f9" style={{ left: 8, top: 8 }}>barttile</p>
|
|
|
|
<img className="absolute" src="/~barttile/img/Tile.png" style={{top: 39, left: 39}}/>
|
|
|
|
</a>
|
2020-05-10 04:24:46 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-10 04:30:23 -07:00
|
|
|
window.barttileTile = barttileTile;
|