shrub/apps/chat/tile/tile.js

26 lines
538 B
JavaScript
Raw Normal View History

2019-06-05 01:46:36 +03:00
import React, { Component } from 'react';
import classnames from 'classnames';
export default class ChatTile extends Component {
render() {
2019-06-05 01:46:36 +03:00
return (
<div className="bg-dark-gray w-100 h-100">
<a className="w-100 h-100 db" style={{
paddingTop: 68,
paddingBottom: 68,
paddingLeft: 64,
paddingRight: 64
}}
href="/~chat">
<img src="/~chat/img/Tile.png" width={106} height={98} />
</a>
2019-06-05 01:46:36 +03:00
</div>
);
}
}
window.chatTile = ChatTile;