18 lines
395 B
JavaScript
18 lines
395 B
JavaScript
|
import React, { Component } from 'react';
|
||
|
import _ from 'lodash';
|
||
|
|
||
|
|
||
|
export default class %APPNAME%Tile extends Component {
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<div className="w-100 h-100 relative bg-white bg-gray0-d ba b--black b--gray1-d">
|
||
|
<p className="black white-d absolute f9" style={{ left: 8, top: 8 }}>%APPNAME%</p>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
window.%APPNAME%Tile = %APPNAME%Tile;
|