2020-01-23 02:16:44 +03:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
|
|
|
|
export default class LinkTile extends Component {
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { props } = this;
|
|
|
|
|
|
|
|
return (
|
2020-02-06 02:16:56 +03:00
|
|
|
<div className="w-100 h-100 relative ba b--black bg-white">
|
|
|
|
<a className="w-100 h-100 db pa2 bn" href="/~link">
|
2020-01-23 02:16:44 +03:00
|
|
|
<p
|
2020-02-06 02:16:56 +03:00
|
|
|
className="f9 black absolute"
|
|
|
|
style={{ left: 8, top: 8 }}>
|
2020-01-23 02:16:44 +03:00
|
|
|
Links
|
|
|
|
</p>
|
|
|
|
<img
|
|
|
|
className="absolute"
|
2020-02-06 02:16:56 +03:00
|
|
|
style={{ left: 39, top: 39 }}
|
2020-01-23 02:16:44 +03:00
|
|
|
src="/~link/img/Tile.png"
|
2020-02-06 02:16:56 +03:00
|
|
|
width={48}
|
|
|
|
height={48}
|
2020-01-23 02:16:44 +03:00
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
window['link-server-hookTile'] = LinkTile;
|