bart-tile/tile/tile.js

21 lines
576 B
JavaScript

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