mirror of
https://github.com/urbit/shrub.git
synced 2024-12-14 20:02:51 +03:00
37 lines
1011 B
JavaScript
37 lines
1011 B
JavaScript
import React, { Component } from 'react'
|
|
import classnames from 'classnames';
|
|
|
|
|
|
export default class PublishTile extends Component {
|
|
constructor(props){
|
|
super(props);
|
|
console.log("publish-tile", this.props);
|
|
}
|
|
|
|
|
|
render(){
|
|
return (
|
|
<div className="w-100 h-100 relative" style={{background: "#1a1a1a"}}>
|
|
<a className="w-100 h-100 db no-underline" href="/~publish">
|
|
<p className="gray label-regular b absolute"
|
|
style={{left: 8, top: 4}}>
|
|
Publish
|
|
</p>
|
|
<img
|
|
className="absolute"
|
|
style={{left: 60, top: 66}}
|
|
src="/~publish/tile.png"
|
|
width={113}
|
|
height={102} />
|
|
<div className="absolute w-100 flex-col body-regular white"
|
|
style={{verticalAlign: "bottom", bottom: 8, left: 8}}>
|
|
<span className="green-medium">{this.props.data.notifications}</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
window.publishTile = PublishTile;
|