2020-05-10 04:24:46 -07:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
|
2020-05-12 00:10:53 -07:00
|
|
|
export default class bartinfoTile 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-12 00:10:53 -07:00
|
|
|
<a className="w-100 h-100 db pa2 no-underline" href="/~bartinfo">
|
2020-05-21 02:49:43 -07:00
|
|
|
<p className="black white-d absolute f9" style={{ left: 8, top: 8 }}>BART Info</p>
|
2020-05-12 00:17:36 -07:00
|
|
|
<img className="absolute" src="/~bartinfo/img/Temp-Bart-Icon.png" style={{top: 40, left: 20, width: "50%"}}/>
|
2020-05-12 00:10:53 -07:00
|
|
|
</a>
|
2020-05-10 04:24:46 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-12 00:10:53 -07:00
|
|
|
window.bartinfoTile = bartinfoTile;
|